PdfPopupMenuShowingEventArgs.PopupMenuKind Property
Gets the type of a particular popup menu shown for the PDF Viewer.
Namespace: DevExpress.XtraPdfViewer
Assembly: DevExpress.XtraPdfViewer.v24.2.dll
NuGet Package: DevExpress.Win.PdfViewer
#Declaration
public PdfPopupMenuKind PopupMenuKind { get; }
#Property Value
Type | Description |
---|---|
Pdf |
A Pdf |
Available values:
Name | Description | Example |
---|---|---|
Page |
Specifies a popup menu that can be invoked by right clicking the page content of the PDF Viewer. |
|
Bookmark |
Specifies a popup menu that can be invoked by right clicking the bookmark item in the bookmarks hierarchical tree on the Navigation pane of the PDF Viewer. |
|
Bookmark |
Specifies a popup menu that can be invoked by clicking the Options drop-down button in the Bookmarks panel of the PDF Viewer. |
|
Thumbnail | Specifies a popup menu that can be invoked by right clicking the page thumbnail on the Navigation pane of the PDF Viewer. |
|
Thumbnail |
Specifies a popup menu that can be invoked by clicking the Options drop-down button in the Page Thumbnails panel of the PDF Viewer. |
|
Comment |
A pop-up menu that appears when the user clicks Options on the Comments navigation pane. |
|
Comment |
A pop-up menu that appears when the user clicks Sort on the Comments navigation pane. |
|
Comment |
A pop-up menu that appears when the user clicks Filter on the Comments navigation pane. |
|
Comment | A pop-up menu that appears when the user right-clicks an annotation on the Comments navigation pane. |
|
Comment |
A pop-up menu that appears when the user right-clicks an annotation on the Comments navigation pane and selects Set Status. |
#Example
using DevExpress.XtraPdfViewer;
using DevExpress.XtraPdfViewer.Commands;
using DevExpress.XtraPdfViewer.Extensions;
//...
void pdfViewer1_PopupMenuShowing(object sender, PdfPopupMenuShowingEventArgs e)
{
// Remove Rotate Clockwise and Rotate Counterclockwise items
// from the Page Content popup menu.
if (e.PopupMenuKind == PdfPopupMenuKind.PageContent)
{
var rotateClockwiseItem =
e.ItemLinks.GetPdfViewerBarItemLink(PdfViewerCommandId.RotatePageClockwise);
e.ItemLinks.Remove(rotateClockwiseItem);
var rotateCounterclockwiseItem =
e.ItemLinks.GetPdfViewerBarItemLink(PdfViewerCommandId.RotatePageCounterclockwise);
e.ItemLinks.Remove(rotateCounterclockwiseItem);
}
}
#Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the PopupMenuKind 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.