• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Autodesk DWF Viewer

    Reply
    *Savås, Per

    Named Views

    102 Views, 1 Replies
    12-07-2002 03:39 AM
    I have problems to find out how to set a named view in VB without using the
    dialog box, has anyone succeded yet.

    Per Savås
    Please use plain text.
    *Cochran, Ben

    Re: Named Views

    12-11-2002 10:14 AM in reply to: *Savås, Per
    'First, get the page viewer
    Dim
    pageViewer As AdPageView.CAdPageViewerClass
    pageViewer =
    AxCAdViewer.Viewer

     

    'Next, get the collection of named
    views
    Dim namedViews As AdPageView.CAdCollectionClass
    namedViews =
    pageViewer.NamedViews

     

    'Now give the user a little tour of the
    named views.
    Dim view As AdPageView.CAdPageViewClass
    For Each view In
    namedViews
        pageViewer.View = view
       
    MessageBox.Show(view.name)
    Next

     

    > I have problems
    to find out how to set a named view in VB without using the
    > dialog box,
    has anyone succeded yet.
    >
    > Per Savås
    >
    >
    >

    >
    >
    >
    Please use plain text.