Infragistics2.Win.UltraWinTree.v8.1
AfterCopy Event
See Also  Example
Infragistics.Win.UltraWinTree Namespace > UltraTree Class : AfterCopy Event

Occurs after the contents of the control's UltraTree.SelectedNodes collection is copied to the clipboard.

Syntax

Visual Basic (Declaration) 
Public Event AfterCopy() As AfterCopyEventHandler
C# 
public event AfterCopyEventHandler AfterCopy()

Example

The following sample code illustrates some of the information available in the AfterCopy 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 BasicCopy Code
    Imports Infragistics.Win
    Imports Infragistics.Win.UltraWinTree

    Private Sub ultraTree1_AfterCopy(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinTree.AfterCopyEventArgs) Handles ultraTree1.AfterCopy

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

        sb.Append("The following nodes have been copied 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

C#Copy Code
       using System.Diagnostics;
       
using Infragistics.Win;
       
using Infragistics.Win.UltraWinTree;

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

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

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

           Debug.WriteLine(sb.ToString());

       }

See Also