TelerikRadDropDownList¶
Telerik RadDropDownList.
UI element class: Telerik.WinControls.UI.RadDropDownList
Extends ManagedComboBox
Extends SeSSimulatedObject
Behavior Pattern: ManagedObjectSelectableBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
SelectedIndex | Index of the selected element of the object. | GetSelectedIndex | SetSelectedIndex |
SelectedText | Text of the selected item in a single string. | GetSelectedText | SetSelectedText |
Action Summary¶
Action | Description |
---|---|
DoSelectItem | Selects an item of this object. |
Property Detail¶
SelectedIndex¶
Index of the selected element of the object.
Type: number
Accessors: GetSelectedIndex, SetSelectedIndex
value = SeS('SomeTelerikRadDropDownList').GetSelectedIndex()
SeS('SomeTelerikRadDropDownList').SetSelectedIndex()
SelectedText¶
Text of the selected item in a single string.
Type: string
Accessors: GetSelectedText, SetSelectedText
value = SeS('SomeTelerikRadDropDownList').GetSelectedText()
SeS('SomeTelerikRadDropDownList').SetSelectedText()
Action Detail¶
DoSelectItem¶
Selects an item of this object.
SeS('SomeTelerikRadDropDownList').DoSelectItem(item)
Parameters:
Name | Type | Description |
---|---|---|
item | string | number | Item index or text value to select. |
Returns:
boolean: 'true' if success, 'false' otherwise.
Behavior Pattern: TelerikSelectableBehavior
Behavior Pattern: ManagedObjectTextBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
Text | Text of the object, 'false' if text can not be read. | GetText | SetText |
Action Summary¶
Action | Description |
---|---|
DoSetText | Sets text value of this object. |
Property Detail¶
Text¶
Text of the object, 'false' if text can not be read.
Type: string
Accessors: GetText, SetText
value = SeS('SomeTelerikRadDropDownList').GetText()
SeS('SomeTelerikRadDropDownList').SetText(value)
Action Detail¶
DoSetText¶
Sets text value of this object.
SeS('SomeTelerikRadDropDownList').DoSetText(val)
Parameters:
Name | Type | Description |
---|---|---|
val | string | Text value. |
Returns:
boolean: 'true' if success, 'false' otherwise.