Class Overview Provides operations on tree nodes. public FormsTreeNode (WindowsAppFriend app, AppVar appVar) Description Constructor.
app Application manipulation object. appVar AppVar object for the target control. public bool Checked {get;} Description Returns true if the node is currently checked. public bool IsExpanded {get;} Description Returns true if the node is expanded. public string Text {get;} Description Returns the node's text. public void EmulateCheck (bool check) Description Sets the node's checked state.
check true to set the node as checked. public void EmulateCheck (bool check, Async async) Description Sets the node's checked state.
check true to set the node as checked. async Asynchronous execution object. public void EmulateCollapse () Description Collapses the node. public void EmulateCollapse (Async async) Description Collapses the node. Parameter async Asynchronous execution object public void EmulateEditLabel (string nodeText) Description Modifies the node's text.
nodeText New text to use. public void EmulateEditLabel (string nodeText, Async async) Description Modifies the node's text asynchronously.
nodeText New text to use. async Asynchronous execution object. public void EmulateExpand () Description Expands the node. public void EmulateExpand (Async async) Description Expands the node. Parameter async Asynchronous execution object JR |