PDFViewerToolbarSettingsItemFactory
Methods
Add()
Adds an item to the collection
RETURNS
Returns a PDFViewerToolbarSettingsItemBuilder with the available configuration options.
Add(System.String)
Adds an item to the ToolBar.
Parameters
toolName - System.String
The value that configures the tool name.
Example
@(Html.Kendo().PDFViewer()
.Name("pdfviewer")
.Toolbar(toolbar =>
toolbar.Items(items =>
{
items.Add("pager");
})
)
)