-
Notifications
You must be signed in to change notification settings - Fork 15
949272 - Documentation on How to Hide or Disabling Toolbar Buttons in WinForms PDFViewer #1222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
|
||
| # Hide or disable the Toolbar Button | ||
|
|
||
| In Order to hide the toolbar button.You can use the [ToolbarSettings](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.PdfViewer.DocumentToolbarSettings.html) API. This API allows you to control the visibility of toolbar buttons |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mention it properly for the API usage "pdfviewerControl.ToolbarSettings.OpenButton.IsVisible = false;"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Properly mentioned the usage of the ToolbarSettings API and the process for hiding the visibility
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
|
||
| # Hide or disable the Toolbar Button | ||
|
|
||
| In the WinForms PDF Viewer, there is an API called [ToolbarSettings](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.PdfViewer.DocumentToolbarSettings.html) that allows you to access and manage toolbar buttons. To hide a specific button, use the IsVisible property associated with that button. By setting IsVisible to false, the button will be hidden from the toolbar. This API provides an easy way to control the visibility of toolbar buttons based on your requirements. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In UG we should not mention "your requirements". please remove below line
This API provides an easy way to control the visibility of toolbar buttons based on your requirements.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed the line mentioned
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
Description: