TdxNavBarObjectState Enum
The type specifies a set of available states of a NavBar element.
Declaration
TdxNavBarObjectState = (
sActive,
sDisabled,
sExpanded,
sHotTracked,
sPressed,
sSelected,
sSpecial,
sFocused
);
Members
Name |
---|
sActive
|
sDisabled
|
sExpanded
|
sHotTracked
|
sPressed
|
sSelected
|
sSpecial
|
sFocused
|
Remarks
Values listed by the TdxNavBarObjectState enumeration are used by the following properties:
The State property of the TdxNavBarGroupViewInfo class;
The State property of the TdxNavBarLinkViewInfo class;
The BottomScrollButtonState and TopScrollButtonState properties of the TdxNavBarViewInfo class.
The table below describes values provided by the TdxNavBarObjectState enumeration.
Value | Description |
---|---|
sActive | A particular NavBar element is active. Relates to groups in Side Bar Views only. |
sDisabled | A particular NavBar element is disabled. Relates to links only. |
sExpanded | A particular NavBar element is expanded. Relates to groups only. |
sHotTracked | A particular NavBar element is hot-tracked. Mouse pointer is over the element. |
sPressed | A particular NavBar element is pressed. An end-user has pressed the element by mouse without releasing the pressed mouse button. |
sSelected | A particular NavBar element is selected. |
sSpecial | A particular NavBar element is active. Relates to groups in Explorer Bar Views only. |
sFocused | A particular NavBar element is focused. An element can be focused if the NavBar control’s TabStop property is set to True. |
See Also