ImageEn, unit iexFolderMView

TImageEnFolderMView.PopupMenuUseSystem

TImageEnFolderMView.PopupMenuUseSystem

Declaration

property PopupMenuUseSystem: Boolean;

Description

If enabled and a PopUpMenu has not been specified then a Windows Explorer popup menu will be shown when right-clicking a file.
If True, then it overrides PopupMenus.


Default: True

Note: If AutoRefresh is not enabled, the control may not update the display of files that are moved or renamed

Examples

// Use Windows Explorer style menu
IEFolderMView1.PopupMenu := nil;
IEFolderMView1.PopupMenuUseSystem := True;

// Use ImageEn's popup menus
IEFolderMView1.PopupMenu := nil;
IEFolderMView1.PopupMenuUseSystem := False;
ImageEnFolderMView1.PopupMenus := [ impDefault, impSelection ];

// Use a custom popup menu
IEFolderMView1.PopupMenu := MyPopupMenu;

See Also

PopupSystemMenu