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


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

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

プロパティ説明
CellRangeCellRangeを取得します。  
DataObjectIDataObjectを取得します。  
PasteOptionClipboardPasteOptionsを取得します。  
SheetViewSheetViewを取得します。  
次のサンプルコードは、ClipboardPastedイベントを使用します。
private void fpSpread1_ClipboardPasted(object sender, EventArgs e)
        {
            listBox1.Items.Add("ClipboardPasted Event");
        }
Private Sub FpSpread1_ClipboardPasted(ByVal sender As Object, ByVal e As System.EventArgs) Handles FpSpread1.ClipboardPasted
        ListBox1.Items.Add("ClipboardPasted Event")
End Sub
参照

FpSpread クラス
FpSpread メンバ

 

 


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