TcxEditCloseUpReason Enum
In This Article
Enumerates reasons for the editor’s popup window closure.
#Declaration
Delphi
TcxEditCloseUpReason = (
crUnknown,
crTab,
crClose,
crCancel,
crEnter
);
#Members
Name |
---|
cr
|
cr
|
cr
|
cr
|
cr
|
#Remarks
Options include:
Value | Description |
---|---|
cr |
The popup window is closed when focus is moved from an editor by pressing the Tab key. |
cr |
The popup window is closed by the F4, Alt+Up Arrow, or Alt+Down Arrow keystroke. |
cr |
The popup window is closed and the selection within the popup window is discarded (for instance, by pressing the Esc key). |
cr |
The popup window is closed either by a press on the Enter key or by the item within the popup window being clicked. |
cr |
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