PowerTools SPREAD for Windows Forms 8.0J
ClipboardPasting イベント


ユーザーがクリップボードから貼り付けたときに発生します。
構文
'Declaration
 
Public Event ClipboardPasting As ClipboardPastingEventHandler
'使用法
 
Dim instance As FpSpread
Dim handler As ClipboardPastingEventHandler
 
AddHandler instance.ClipboardPasting, handler
public event ClipboardPastingEventHandler ClipboardPasting
イベント データ

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

プロパティ説明
Behavior動作を取得します。  
Handled貼り付けが処理されたか、またはデフォルトの貼り付けアクションを実行する必要があるかを取得または設定します。  
解説

このイベントは、ユーザーがクリップボードからの貼り付けを行ったときにOnClipboardPastingメソッドによって生成されます。

個々のイベント引数の詳細については、ClipboardPastingEventArgsメンバを参照してください。

次のサンプルコードは、クリップボード操作をキャンセルします。
private void fpSpread1_ClipboardPasting(object sender, FarPoint.Win.Spread.ClipboardPastingEventArgs e) 
{ 
    e.Handled = true;  
} 
Private Sub FpSpread1_ClipboardPasting(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.ClipboardPastingEventArgs)
Handles FpSpread1.ClipboardPasting
    e.Handled = True 
End Sub 
参照

FpSpread クラス
FpSpread メンバ
ClipboardPastingEventArgs クラス

 

 


© 2004-2015, GrapeCity inc. All rights reserved.