A collection of Selected Nodes.
Object Model
Syntax
Example
The following sample code illustrates some of the information available in the AfterSelect event.
For an overview of how to handle events in Visual Basic or Visual C#, see
Event Handlers in Visual Basic and Visual C#. For specific information and code examples illustrating how to consume events in your application, see
Consuming Events in the
.NET Framework Developer's Guide.
| Visual Basic | Copy Code |
|---|
Imports Infragistics.Win.UltraWinTree
Private Sub ultraTree1_AfterSelect(ByVal sender As System.Object, ByVal e As Infragistics.Win.UltraWinTree.SelectEventArgs) Handles ultraTree1.AfterSelect
Dim sb As New System.Text.StringBuilder()
sb.Append("The SelectedNodes collection has changed to the nodes ")
Dim node As UltraTreeNode
For Each node In e.NewSelections
sb.Append(node.Key)
sb.Append(", ")
Next
Debug.WriteLine(sb.ToString())
End Sub
|
| C# | Copy Code |
|---|
using System.Diagnostics;
using Infragistics.Win.UltraWinTree;
private void ultraTree1_AfterSelect(object sender, Infragistics.Win.UltraWinTree.SelectEventArgs e)
{
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append("The SelectedNodes collection has changed to the nodes
");
// Loop over the nodes in the new SelectedNodes collection.
foreach ( UltraTreeNode node
in e.NewSelections )
{
sb.Append( node.Key );
sb.Append( ", " );
}
Debug.WriteLine(sb.ToString());
} |
See Also