Win32ComboBox¶
This is generic Win32 combo box. Use DoSelectItem to select a particular item.
Extends SeSSimulatedObject
Behavior Pattern: Win32ItemSelectable
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
ItemCount | Number of items. | GetItemCount |
Action Summary¶
Action | Description |
---|---|
DoSelectItem | Selects item of this object. |
Property Detail¶
ItemCount¶
Number of items.
Type: number
Accessors: GetItemCount
value = SeS('SomeWin32ComboBox').GetItemCount()
Action Detail¶
DoSelectItem¶
Selects item of this object.
SeS('SomeWin32ComboBox').DoSelectItem(itemName)
Parameters:
Name | Type | Description |
---|---|---|
itemName | string | This is a name of item to select. Or an array of item names in the case of multi-select. |
Returns:
boolean: 'true' if operation is successful, 'false' otherwise