TcxEditButtonState Enum
Enumerates editor button states.
#Declaration
Delphi
TcxEditButtonState = (
ebsDisabled,
ebsNormal,
ebsPressed,
ebsSelected
);
#Members
Name | Description |
---|---|
ebs
|
An editor button is disabled (the button’s Enabled property is set to |
ebs
|
This value corresponds to the base (normal) state of an editor button. |
ebs
|
The pressed editor button state. An editor button is in this state for a short period of time when a user clicks the button. |
ebs
|
An editor button is hot-tracked. |
#Remarks
An editor button can have different appearance in different states. For example, you can handle an editor’s Properties.OnButtonGlyphDrawParameters event to display different button glyphs for different button states.
#Direct TcxEditButtonState Type Reference
The AState
parameter of the TcxEditButtonGlyphDrawParametersEvent procedural type references the TcxEditButtonState
type.
See Also