バージョン

PasteError イベント

ノードをクリップボードから貼り付けているときにエラーが発生した場合に発生します。
シンタックス
'宣言
 
Public Event PasteError As PasteErrorEventHandler
public event PasteErrorEventHandler PasteError
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、PasteErrorEventArgs 型の引数を受け取りました。次の PasteErrorEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
DisplayErrorMessage エラーを説明するメッセージボックスをユーザーに表示するかどうかを示します。
Exception スローされた例外。(読み取り専用)
Nodes Infragistics.Win.UltraWinTree.NodesEventArgsから継承されます。操作されたノードのコレクション。(読み取り専用)
解説
このイベントは、ノードがツリーに挿入される前に発生します。
使用例
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinTree

Private Sub ultraTree1_PasteError(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinTree.PasteErrorEventArgs) Handles ultraTree1.PasteError

    ' Paste exceptions can occur if:
    ' 1. the application doesn't have security rights to the clipboard
    ' 2. one or more of the nodes being pasted have keys that are 
    '    already used by other nodes in the tree .
    Debug.WriteLine(e.Exception.ToString())

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

private void ultraTree1_PasteError(object sender, Infragistics.Win.UltraWinTree.PasteErrorEventArgs e)
{
	// Paste exceptions can occur if:
	// 1. the application doesn't have security rights to the clipboard
	// 2. one or more of the nodes being pasted have keys that are 
	//    already used by other nodes in the tree .
	Debug.WriteLine( e.Exception.ToString() );
}
参照