WinStudio
IWSFormComponent interface, tree objects
Returns a Boolean value indicating whether a specific node is currently expanded.
object.TreeIsCurrentlyExpandedAt( string )
Part |
Description |
object | Required. A reference to a valid tree component object. |
string | Required. The tree node ID (GUID) or node index series. |
A return value of:
For more information, see Notes on the Tree Node ID (GUID) and Index Series.
Dim nodeIsCurrentlyExpanded As Boolean = False nodeIsCurrentlyExpanded = ThisForm.Components("tree1").TreeIsCurrentlyExpandedAt("My Tree Node ID") nodeIsCurrentlyExpanded = ThisForm.Components("tree1").TreeIsCurrentlyExpandedAt("2,0")