C++
enum EditFlags { kForceOpaqueBackground = 1<<0, kSelectAll = 1<<1, kCursorAtEnd = 1<<2 };
File
AcEdInplaceTextEditor.h
Members
Members | Description |
---|---|
kForceOpaqueBackground | If invoked with this flag, the text editor background is opaque. |
kSelectAll | Initially the current all of the characters in the text editor are selected. This flag and kSelectAll are mutually exclusive; kCursorAtEnd is igored if kSelectAll is set. |
kCursorAtEnd | Initially the current cursor is placed at the end of the text editor. This flag and kSelectAll are mutually exclusive;kCursorAtEnd is igored if kSelectAll is set. |
Description
This enum specifies the editing flags when invoking the text editor. You can set one or several flags for the text editor.