Method elm.Expand(+ 3 overloads)
Overload
Expands or collapse this expandable UI element (tree item, combo box, expander, dropdown button).
public void Expand(bool expand = true, string keys = null, double waitS = 1, bool ignoreState = false)
Parameters
expand (bool)
|
keys (string)
If not |
waitS (double)
If not 0, waits for new expanded/collapsed state max this number of seconds; on timeout throws exception, unless negative. |
ignoreState (bool)
Ignore initial EXPANDED/COLLAPSED state and always perform the expand/collapse action. Can be useful when elm.StateEXPANDED/COLLAPSED is incorrect. To ignore final state, use negative waitS instead, for example -0.001. |
Exceptions
Exception
Exceptions of elm.SendKeys. |
TimeoutException
The state didn't change in waitS seconds (if > 0). |
Remarks
Does nothing if the UI element already has the requested expanded/collapsed state.
Works with UI elements that have elm.StateEXPANDED when expanded and COLLAPSED when collapsed. Also with UI elements that have state CHECKED or PRESSED when expanded and don't have this state when collapsed.
Overload(next)
Expands or collapse this expandable UI element (tree item, combo box, expander, dropdown button).
public void Expand(bool expand, Action<elm> action, double waitS = 1, bool ignoreState = false)
Parameters
expand (bool)
|
action (Action<elm>)
Callback function that should expand or collapse this UI element. Its parameter is this variable. |
waitS (double)
If not 0, waits for new expanded/collapsed state max this number of seconds; on timeout throws exception, unless negative. |
ignoreState (bool)
Ignore initial EXPANDED/COLLAPSED state and always perform the expand/collapse action. Can be useful when elm.StateEXPANDED/COLLAPSED is incorrect. To ignore final state, use negative waitS instead, for example -0.001. |
Exceptions
Exception
Exceptions of the callback function. |
TimeoutException
The state didn't change in waitS seconds (if > 0). |
Remarks
Does nothing if the UI element already has the requested expanded/collapsed state.
Works with UI elements that have elm.StateEXPANDED when expanded and COLLAPSED when collapsed. Also with UI elements that have state CHECKED or PRESSED when expanded and don't have this state when collapsed.
Overload(next)
Expands multiple treeview control items using a path string.
public elm Expand(Strings path, string keys = null, double waitS = 3, bool notLast = false)
Parameters
path (Strings)
String or array consisting of names (elm.Name) of TREEITEM elements, like |
keys (string)
|
waitS (double)
If not 0, after expanding each element waits for expanded state max this number of seconds; on timeout throws exception, unless negative. Also waits for each element this number of seconds; always exception if not found. |
notLast (bool)
Find but don't expand the last element specified in path. For example if it's not a folder, and therefore can't expand it, but you need to find it (this function returns it). |
Returns
elm
elm of the last element specified in path. |
Exceptions
ArgumentException
path contains an invalid wildcard expression ( |
NotFoundException
Failed to find an element specified in path. |
AuException
Failed. |
TimeoutException
The state didn't change in waitS seconds (if > 0). |
NotSupportedException
The treeview control type is not supported when this is a 32-bit process running on 64-bit OS (unlikely). |
Exception
Exceptions of elm.SendKeys. |
Remarks
This element can be a TREE or TREEITEM. If it is a collapsed TREEITEM, expands it. Then finds and expands elements specified in path.
Does not work if all TREEITEM elements in the TREE control are its direct children, unless it's the standard Windows treeview control.
Overload(top)
Expands multiple treeview control items using a path string.
public elm Expand(Strings path, Action<elm> action, double waitS = 3, bool notLast = false)
Parameters
path (Strings)
String or array consisting of names (elm.Name) of TREEITEM elements, like |
action (Action<elm>)
Callback function that should expand UI elements. |
waitS (double)
If not 0, after expanding each element waits for expanded state max this number of seconds; on timeout throws exception, unless negative. Also waits for each element this number of seconds; always exception if not found. |
notLast (bool)
Find but don't expand the last element specified in path. For example if it's not a folder, and therefore can't expand it, but you need to find it (this function returns it). |
Returns
elm
elm of the last element specified in path. |
Exceptions
Exception
Exceptions of the callback function. |
ArgumentException
path contains an invalid wildcard expression ( |
NotFoundException
Failed to find an element specified in path. |
AuException
Failed. |
TimeoutException
The state didn't change in waitS seconds (if > 0). |
NotSupportedException
The treeview control type is not supported when this is a 32-bit process running on 64-bit OS (unlikely). |