TIEGlobalSettings.PdfViewingPopupMenu
Declaration
property PdfViewingPopupMenu: TImageEnViewButtons;
Description
Specifies the items of the
Adobe PDF Viewing popup menu.
The default items for this popup menu allow you to perform PDF viewing functions, such as zooming and printing. All editing functions are excluded.
The PDF Viewing popup menu appears over a
TImageEnView if:
◼PopupMenus includes ievPdfViewing
◼PopupMenus does NOT include ievPdfEditing
◼PdfViewer is enabled
Note:
◼For more in-depth customization of popup menu items, use the
OnAddPopupMenuItem event
◼To remove or change the hue to popup menu item glyphs, use
PopupMenuImageHue// Show zoom, seek and print items
IEGlobalSettings().PdfViewingPopupMenu := [ ivbImageSeek, ivbImagePrint, ivbImageZoom ];
ImageEnView1.PopupMenus := [ ievPdfViewing ];
See Also
◼PopupMenus◼PdfEditingPopupMenu◼ImageEditingPopupMenu◼ImageSelectionPopupMenu◼LayerEditingPopupMenu◼LayerSelectionPopupMenu◼PopupMenuImageHue◼OnAddPopupMenuItem