UltraExplorerBar¶
Infragistics UltraExplorerBar. UltraExplorerBar UI element class: Infragistics.Win.UltraWinExplorerBar.UltraExplorerBar
Extends ManagedObject
Behavior Pattern: UltraExplorerBarControlBehavior
Property Summary¶
| Property | Description | Getter | Setter |
|---|---|---|---|
| ActiveGroup | Text of the active group. | GetActiveGroup | |
| ActiveItem | Text of the active item. | GetActiveItem | |
| GroupCount | Number of groups in this explorer bar. | GetGroupCount | |
| Item | Caption of the item specified by index | GetItem | |
| ItemCount | Number of items in this explorer bar. | GetItemCount | |
| SelectedGroup | Text of the selected group. | GetSelectedGroup |
Action Summary¶
| Action | Description |
|---|---|
| DoClickItem | Performs click on the navigation item |
| DoCollapseGroup | Collapses specific group in the explorer bar. |
| DoExpandGroup | Expand (or make active) the navigation group |
Property Detail¶
ActiveGroup¶
Text of the active group.
Type:
Accessors: GetActiveGroup
value = SeS('SomeUltraExplorerBar').GetActiveGroup()
ActiveItem¶
Text of the active item.
Type:
Accessors: GetActiveItem
value = SeS('SomeUltraExplorerBar').GetActiveItem()
GroupCount¶
Number of groups in this explorer bar.
Type:
Accessors: GetGroupCount
value = SeS('SomeUltraExplorerBar').GetGroupCount()
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('SomeUltraExplorerBar').GetItem(/**number*/ind)
ItemCount¶
Number of items in this explorer bar. All items may then be accessed by SeS(
Type:
Accessors: GetItemCount
value = SeS('SomeUltraExplorerBar').GetItemCount()
SelectedGroup¶
Text of the selected group.
Type:
Accessors: GetSelectedGroup
value = SeS('SomeUltraExplorerBar').GetSelectedGroup()
Action Detail¶
DoClickItem¶
Performs click on the navigation item
SeS('SomeUltraExplorerBar').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.
DoCollapseGroup¶
Collapses specific group in the explorer bar.
SeS('SomeUltraExplorerBar').DoCollapseGroup(nameCaptionIndex)
Parameters:
| Name | Type | Description |
|---|---|---|
| nameCaptionIndex | string | number | Name, caption or index of the group. |
Returns:
boolean: 'true' if success, 'false' otherwise.
DoExpandGroup¶
Expand (or make active) the navigation group
SeS('SomeUltraExplorerBar').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.