Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxNavBarObjectState Enum

The type specifies a set of available states of a NavBar element.

#Declaration

Delphi
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 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