ImageEn, unit ieSettings

TIEGlobalSettings.LayerMViewSelectionPopupMenu

TIEGlobalSettings.LayerMViewSelectionPopupMenu

Declaration

property LayerMViewSelectionPopupMenu: TImageEnLayerMViewButtons;

Description

Specifies the items of the TImageEnLayerMView selection popup menu.
This menu is displayed when you right-click on a thumbnail in the control . You must add impSelection to PopupMenus.
The default items for this popup menu allow you to print and rotate the thumbnail.


To specify items for the popup menu that shows when right-clicking the background, use LayerMViewDefaultPopupMenu.

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
◼To use the popup menu in a DLL, you must enable EnableDLLMode

Default: [ilbLayersEditCurrent, ilbLayersGroup, ilbLayersRename, ilbLayersProps]

TImageEnMView Popup Menus

The following popup menus are available for TImageEnMView and its descendents:
◼TImageEnMView, right-click the background: MViewDefaultPopupMenu
◼TImageEnMView, right-click a thumbnail: MViewSelectionPopupMenu
◼TImageEnFolderMView, right-click the background: FolderMViewDefaultPopupMenu
◼TImageEnFolderMView, right-click a thumbnail: FolderMViewSelectionPopupMenu
◼TImageEnLayerMView, right-click the background: LayerMViewDefaultPopupMenu
◼TImageEnLayerMView, right-click a thumbnail: LayerMViewSelectionPopupMenu

Examples

// Remove grouping items from the right-click menu
IEGlobalSettings().LayerMViewSelectionPopupMenu := IEGlobalSettings().LayerMViewSelectionPopupMenu - [ ilbLayersGroup ];
ImageEnLayerMView1.PopupMenus := [ impDefault, impSelection ];

// Add a Select All item to the right-click menu
IEGlobalSettings().LayerMViewSelectionPopupMenu := [ ilbSelect ];
ImageEnLayerMView1.PopupMenus := [ impDefault, impSelection ];

See Also

◼PopupMenus
◼PopupMenuImageHue
◼OnAddPopupMenuItem