Version

AfterCut Event

Occurs after the contents of the control's SelectedNodes collection is cut to the clipboard.
Syntax
'Declaration
 
Public Event AfterCut As AfterCutEventHandler
public event AfterCutEventHandler AfterCut
Event Data

The event handler receives an argument of type AfterCutEventArgs containing data related to this event. The following AfterCutEventArgs properties provide information specific to this event.

PropertyDescription
Nodes (Inherited from Infragistics.Win.UltraWinTree.NodesEventArgs)The collection of nodes that were operated on. (read-only)
Example
The following sample code illustrates some of the information available in the AfterCut 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.

Imports Infragistics.Win
Imports Infragistics.Win.UltraWinTree

Private Sub ultraTree1_AfterCut(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinTree.AfterCutEventArgs) Handles ultraTree1.AfterCut

    Dim sb As New System.Text.StringBuilder()
    Dim node As UltraTreeNode

    sb.Append("The following nodes have been cut to the clipboard: ")

    ' Loop over the nodes 
    For Each node In e.Nodes
        sb.Append(node.Text)
        sb.Append(", ")
    Next

    Debug.WriteLine(sb.ToString())

End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinTree;

private void ultraTree1_AfterCut(object sender, Infragistics.Win.UltraWinTree.AfterCutEventArgs e)
{
	System.Text.StringBuilder sb = new System.Text.StringBuilder();

	sb.Append("The following nodes have been cut to the clipboard: ");

	// Loop over the nodes 
	foreach ( UltraTreeNode node in e.Nodes )
	{
		sb.Append( node.Text );
		sb.Append( ", " );
	}

	Debug.WriteLine(sb.ToString());

}
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