New to Telerik UI for ASP.NET MVC? Download free 30-day trial

PDFViewerToolbarSettingsBuilder

Methods

Items(System.Action)

The the built-in tools are: 'pager', 'zoomInOut', 'zoom', 'toggleSelection', 'search', 'open', 'download', and 'print'. For DPL Processing, the 'exportAs' tool could be configured to export a single page to '.png' or '.svg'. The 'zoom', 'zoomInOut', 'toggleSelection', 'search', and 'print' tools are available only with PDFjs processing.

Parameters

configurator - System.Action<PDFViewerToolbarSettingsItemFactory>

The action that configures the items.

Example


            @(Html.Kendo().PDFViewer()
               .Name("pdfviewer")
               .Toolbar(toolbar =>
                    toolbar.Items(items =>
                    {
                        items.Add().Name("pager");
                    })
                )
             )

In this article
Not finding the help you need?