Skip to main content
A newer version of this page is available. .

PdfPopupMenuShowingEventArgs.PopupMenuKind Property

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

Namespace: DevExpress.XtraPdfViewer

Assembly: DevExpress.XtraPdfViewer.v19.1.dll

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
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

Example

using System.Windows.Forms;
using DevExpress.XtraPdfViewer;
using DevExpress.XtraBars;
using DevExpress.XtraPdfViewer.Extensions;

namespace CustomPopupMenu
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            pdfViewer1.LoadDocument("..\\..\\Demo.pdf");
        }

        void pdfViewer1_PopupMenuShowing(object sender, PdfPopupMenuShowingEventArgs e)
        {
            // Hide the popup menu for the bookmark tree.
            if (e.PopupMenuKind == PdfPopupMenuKind.BookmarkTree) {
                e.ItemLinks.Clear();
            }

            // Remove Rotate Clockwise and Rotate Counterclockwise items from the Page Content popup menu.
            if (e.PopupMenuKind == PdfPopupMenuKind.PageContent)
            {
             e.ItemLinks.Remove(e.ItemLinks.GetPdfViewerBarItemLink(PdfViewerCommandId.RotatePageClockwise));
            e.ItemLinks.Remove(e.ItemLinks.GetPdfViewerBarItemLink(PdfViewerCommandId.RotatePageCounterclockwise));

            }
        }
    }
}

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