Skip to main content

PdfPopupMenuShowingEventArgs.PopupMenuKind Property

Gets the type of a particular popup menu shown for the PDF Viewer.

Namespace: DevExpress.XtraPdfViewer

Assembly: DevExpress.XtraPdfViewer.v23.2.dll

NuGet Package: DevExpress.Win.PdfViewer

Declaration

public PdfPopupMenuKind PopupMenuKind { get; }

Property Value

Type Description
PdfPopupMenuKind

A PdfPopupMenuKind enumeration value which represents the kind of a popup menu shown for the PDF Viewer.

Available values:

Name Description Example
PageContent

Specifies a popup menu that can be invoked by right clicking the page content of the PDF Viewer.

PageContent

BookmarkTree

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.

BookmarkTree

BookmarkOptions

Specifies a popup menu that can be invoked by clicking the Options drop-down button in the Bookmarks panel of the PDF Viewer.

BookmarkOptions

Thumbnail

Specifies a popup menu that can be invoked by right clicking the page thumbnail on the Navigation pane of the PDF Viewer.

ThumbnailPopup

ThumbnailOptions

Specifies a popup menu that can be invoked by clicking the Options drop-down button in the Page Thumbnails panel of the PDF Viewer.

ThumbnailsOptionsPopup

CommentOptions

A pop-up menu that appears when the user clicks Options on the Comments navigation pane.

Comment Options Pop-Up

CommentSort

A pop-up menu that appears when the user clicks Sort on the Comments navigation pane.

Comment Sort Pop-Up

CommentFilter

A pop-up menu that appears when the user clicks Filter on the Comments navigation pane.

Comment Filter Pop-Up

Comment

A pop-up menu that appears when the user right-clicks an annotation on the Comments navigation pane.

comment pop-up

CommentReview

A pop-up menu that appears when the user right-clicks an annotation on the Comments navigation pane and selects Set Status.

comment review pop-up

Example

View 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);
    }
}

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.

See Also