Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Documents.UI Namespace > DocumentViewerFactory Class : CreateDocumentViewer Method |
public static DocumentViewer CreateDocumentViewer( DocumentViewerCreateOptions createOptions )
'Declaration
Public Shared Function CreateDocumentViewer( _ ByVal createOptions As DocumentViewerCreateOptions _ ) As DocumentViewer
'Usage
Dim createOptions As DocumentViewerCreateOptions Dim value As DocumentViewer value = DocumentViewerFactory.CreateDocumentViewer(createOptions)
public: static DocumentViewer^ CreateDocumentViewer( DocumentViewerCreateOptions^ createOptions )
This method works as follows:
Commands is created.
The View will be created in ViewContainer.
If ThumbnailsContainer is not null, then Thumbnails will be created and added to it.
Bookmarks will be created.
If UseAnnotations is true, then Annotations is created.
Diagnostics is created.
Finally, the InteractiveSelectText command is run to set this mode as the default interactive mode for the view. Run any other interactive mode commands after this method returns to set the initial mode to a different value, for example, by calling documentViewerInstance.Commands.Run(DocumentViewerCommands.InteractiveAutoPan), null) to set auto-pan as the default interactive mode.
Once the DocumentViewer is created and initialized. You can use it by loading a Document object and calling the SetDocument method to view the document.
For an example, refer to DocumentViewer.