I am getting this warning when trying to customize the PdfToolbar
|
<SfPdfViewerServer DocumentPath="@DocumentPath" Height="500px" Width="1060px" ToolbarSettings="@ToolbarSettings"></SfPdfViewerServer>
public PdfViewerToolbarSettings ToolbarSettings = new PdfViewerToolbarSettings()
{
ToolbarItems = new()
{
Syncfusion.Blazor.PdfViewer.ToolbarItem.PageNavigationTool,
Syncfusion.Blazor.PdfViewer.ToolbarItem.MagnificationTool,
Syncfusion.Blazor.PdfViewer.ToolbarItem.SearchOption,
Syncfusion.Blazor.PdfViewer.ToolbarItem.PrintOption,
Syncfusion.Blazor.PdfViewer.ToolbarItem.DownloadOption
}
};
|