TIEImageEnGlobalSettings.TextEditorPopupMenu
Declaration
property TextEditorPopupMenu: TIERichEditButtons;
Description
Specifies the items that appear in the popup menu when right-clicking the plain text editor for a
TIETextLayer.
Notes:
- For the plain text editor, only the following are supported: irbRichEditUndo, irbRichEditClipboard, irbRichEditOther, irbRichEditSelect
- The popup menu for rich text editing is controlled by
RichEditorPopupMenu- Set TextEditorPopupMenu to [] to disable the popup menu
Examples
// Show only clipboard items in the popup menu
IEGlobalSettings().TextEditorPopupMenu := [irbRichEditClipboard];
// Disable the popup menu
IEGlobalSettings().TextEditorPopupMenu := [];
See Also
-
RichEditorPopupMenu-
RichEditorToolbar