ImageEn, unit iexRichEdit

TIERichEdit.PopupMenuAuto

TIERichEdit.PopupMenuAuto


Declaration

property PopupMenuAuto: Boolean;


Description

Enables an automatically generated popup menu.

This property is only used if a custom popup menu has not been specified.
You can configure the items of the popup menu using RichEditorPopupMenu

Note: This option will be ignored if you have enabled SpellChecking

Default: True


Examples

// Show only clipboard items in the popup menu
IEGlobalSettings().RichEditorPopupMenu := [irbRichEditClipboard];
IERichEdit1.PopupMenu := nil;

// Disable the popup menu
IEGlobalSettings().RichEditorPopupMenu := [];

// Display a custom popup menu
IERichEdit1.PopupMenu := MyPopupMenu;