BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
HTML:
<div class="content-wrapper">
<ejs-pdfviewer id="pdfViewer" [serviceUrl]='service' [documentPath]='document' [toolbarSettings]= 'toolbarSettings' style="height:850px;display:block"></ejs-pdfviewer>
</div>
TS
export class AppComponent implements OnInit {
public service = 'https://ej2services.syncfusion.com/production/web-services/api/pdfviewer';
public document = 'PDF_Succinctly.pdf';
public toolbarSettings = { toolbarItem: 'OpenOption,PageNavigationTool, MagnificationTool, PanTool, SelectionTool, SearchOption'};
ngOnInit(): void {
}
} |
window.onload = function () {
var pdfViewer = document.getElementById('pdfviewer').ej2_instances[0];
pdfViewer.toolbar.showToolbarItem(new Array("OpenOption"), false);
} |