TcxEditCloseUpReason Enum
Enumerates reasons for the editor’s popup window closure.
Declaration
TcxEditCloseUpReason = (
crUnknown,
crTab,
crClose,
crCancel,
crEnter
);
Members
Name |
---|
crUnknown
|
crTab
|
crClose
|
crCancel
|
crEnter
|
Remarks
Options include:
Value | Description |
---|---|
crTab | The popup window is closed when focus is moved from an editor by pressing the Tab key. |
crClose | The popup window is closed by the F4, Alt+Up Arrow, or Alt+Down Arrow keystroke. |
crCancel | The popup window is closed and the selection within the popup window is discarded (for instance, by pressing the Esc key). |
crEnter | The popup window is closed either by a press on the Enter key or by the item within the popup window being clicked. |
crUnknown | None of the above reasons caused the popup window to close of (for instance, this kind of reason is used for internal purposes). |
See Also