Class Overview Represtnts a list item. public FormsListViewItem (WindowsAppFriend app, AppVar item) Description Constructor.
app Application manipulation object. item AppVar referencing the target control object. public bool Checked {get;} Description Returns the item's check state. public int ItemIndex {get;} Description Returns the item's index. public string Text {get;} Description Returns the item's text. public void EmulateCheck (bool value) Description Sets the item's checked state.
value Check state to use. public void EmulateCheck (bool value, Async async) Description Sets the item's checked state asynchronously.
value Check state to use. async Asynchronous execution object. public void EmulateEditLabel (string text) Description Sets the item's text.
text Text to use. public void EmulateEditLabel (string text, Async async) Description Sets the item's text.
text Text to use. async Asynchronous execution object. public FormsListViewSubItem GetSubItem (int subitemindex) Description Retrieves a sub item.
subitemindex Index of the sub-item to retrieve. JR |