maui-devexpress-dot-maui-dot-pdf-dot-pdfviewer.md
Gets or sets whether the built-in PDF viewer toolbar is visible. This is a bindable property.
Namespace : DevExpress.Maui.Pdf
Assembly : DevExpress.Maui.Pdf.dll
NuGet Package : DevExpress.Maui.Pdf
public bool ShowToolbar { get; set; }
| Type | Description |
|---|---|
| Boolean |
true to show the toolbar; otherwise, false.
|
To manage the bottom edit toolbar visibility, use the ShowEditToolbar property.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ShowToolbar property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
maui-generate-data-bound-report/CS/MauiReportingApp/MainPage.xaml#L19
</dxc:ShimmerView.LoadingView>
<pdf:PdfViewer x:Name="pdfViewer" ShowToolbar="True"/>
</dxc:ShimmerView>
See Also