VintaSoft Imaging .NET SDK and Plug-ins Discussions
Questions, comments and suggestions concerning VintaSoft Imaging .NET SDK.
Board index < VintaSoft Imaging < VintaSoft Imaging .NET SDK and Plug-ins Discussions
// create the document viewer settings
var docViewerSettings = new Vintasoft.Imaging.DocumentViewer.WebDocumentViewerSettingsJS("documentViewerContainer", { annotations: true });
// initialize main menu of document viewer
__initMenu(docViewerSettings);
// initialize side panel of document viewer
__initSidePanel(docViewerSettings);
// initialize image viewer panel of document viewer
__initImageViewerPanel(docViewerSettings);
// create the document viewer
_docViewer = new Vintasoft.Imaging.DocumentViewer.WebDocumentViewerJS(docViewerSettings);
and this code to open file
_docViewer.openFile(filePath);Please advise.