Class Overview Provides operations on controls of type System.Windows.Forms.ComboBox. public FormsComboBox (WindowControl src) Description Constructor.
src Window control object for the underlying control. public FormsComboBox (WindowsAppFriend app, AppVar appVar) Description Constructor.
app Application manipulation object. appVar Application variable for the control object. public int ItemCount {get;} Description Returns the number of items in the list. public int SelectedItemIndex {get;} Description Returns the index of the currently selected item. public void EmulateChangeSelect (int index) Description Selects the item with the specified index.
index Item index. public void EmulateChangeSelect (int index, Async async) Description Asynchronously selects the item with the specified index.
index Item index. async Asynchronous execution object. public void EmulateChangeText (string text) Description Modifies the control's text.
text Text to use. public void EmulateChangeText (string text, Async async) Description Modifies the control's text.
text Text to use. async Asynchronous execution object. public int FindString (string text, int startIndex) Description Finds an item with the with the specified text value.
public string GetItemText (int index) Description Returns the text for an item in the list.
The item's text.
index Index of the item. JR |