DXPopupBarControl¶
DevXpress DXPopupBarControl.
UI element class: regex:DevExpress.XtraBars.Controls..*BarControl
Extends ManagedObject
Extends SeSSimulatedObject
Behavior Pattern: DXPopupBarControlBehavior
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 |
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('SomeDXPopupBarControl').GetItem(/**number*/ind)
ItemCount¶
Number of items.
Type: number
Accessors: GetItemCount
value = SeS('SomeDXPopupBarControl').GetItemCount()
Action Detail¶
DoClickItem¶
Performs click on the navigation item
SeS('SomeDXPopupBarControl').DoClickItem(nameCaptionIndex, xOffset, yOffset)
Parameters:
Name | Type | Description |
---|---|---|
nameCaptionIndex | string | number | index, name or caption of the item to be selected. |
xOffset | number | X offset to click within object. Calculated from the top-left corner. Default is a center. Floating point in the range (-2, 2) means percentage of the width. Optional. |
yOffset | number | Y offset to click within object. Calculated from the top-left corner. Default is a center. Floating point in the range (-2, 2) means percentage of the height. Optional. |
Returns:
boolean: 'true' if successful, 'false' otherwise.