DXNavBarControl¶
DevXpress NavBar.
UI element class: DevExpress.XtraNavBar.NavBarControl
Extends ManagedObject
Extends SeSSimulatedObject
Behavior Pattern: DXNavBarControlBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
Item | Caption of the item specified by index | GetItem | |
ItemCount | Number of items. | GetItemCount |
Action Summary¶
Action | Description |
---|---|
DoClickItem | Performs click on the navigation item |
DoExpandGroup | Expand (or make active) the navigation group |
Property Detail¶
Item¶
Caption of the item specified by index
Getter Parameters:
Name | Type | Description |
---|---|---|
ind | number | Index of an item to get caption |
Type: string
Accessors: GetItem
value = SeS('SomeDXNavBarControl').GetItem(/**number*/ind)
ItemCount¶
Number of items.
Type: number
Accessors: GetItemCount
value = SeS('SomeDXNavBarControl').GetItemCount()
Action Detail¶
DoClickItem¶
Performs click on the navigation item
SeS('SomeDXNavBarControl').DoClickItem(nameCaptionIndex)
Parameters:
Name | Type | Description |
---|---|---|
nameCaptionIndex | string | number | index, name or caption of the item to be selected. |
Returns:
boolean: 'true' if successful, 'false' otherwise.
DoExpandGroup¶
Expand (or make active) the navigation group
SeS('SomeDXNavBarControl').DoExpandGroup(nameCaptionIndex)
Parameters:
Name | Type | Description |
---|---|---|
nameCaptionIndex | string | number | index, name or caption of the item to be selected. |
Returns:
boolean: 'true' if successful, 'false' otherwise.