Version

BringIntoView(Boolean) Method

Ensures that the tree node is in the viewable area of the control. This method will expand parent nodes and scroll the UltraTree control as necessary to bring the node into view.
Syntax
'Declaration
 
Public Overloads Sub BringIntoView( _
   ByVal includeChildNodes As Boolean _
) 
public void BringIntoView( 
   bool includeChildNodes
)

Parameters

includeChildNodes
If true will attempt to bring all child nodes into view as well.
Remarks

This method will ensure that the node, and optionally its child nodes, are somewhere within the viewable area of the control, but the exact position of the node is unknown.

To position the node more precisely, use the TopNode property of the control.

Note: If the includeChildNodes parameter is true and the node and its child nodes won't fit in the viewable area then this node will become the top node.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also