ComboBox
Summary
A control that shows drop down list of items and allows user to select a single item from the list
Signature
1 | |
Namespace
cAlgo.API
Examples
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
Methods
AddItem
Summary
Adds a new item to the ComboBox
Signature
1 | |
Parameters
| Name | Type | Description |
|---|---|---|
| item | string | The string value that will be added on ComboBox |
Return Value
void
RemoveItem
Summary
Removes an existing item from the ComboBox
Signature
1 | |
Parameters
| Name | Type | Description |
|---|---|---|
| item | string | The string value that will be removed from ComboBox |
Return Value
void
RaiseSelectionItemChanged
Signature
1 | |
Parameters
| Name | Type | Description |
|---|---|---|
| selectedIndex | int |
Return Value
void
Accept
Signature
1 | |
Parameters
| Name | Type | Description |
|---|---|---|
| visitor | IChartControlVisitor |
Return Value
void
Properties
SelectedItem
Summary
Set / Get the ComboBox selected item
Signature
1 | |
Return Value
string
SelectedIndex
Summary
Set / Get the ComboBox selected item index
Signature
1 | |
Return Value
int
Events
SelectedItemChanged
Summary
This event will trigger if the ComboBox selected item changed
Signature
1 | |