Spread の動作でクリップボードが変更されたら発生します。
構文
'Declaration
Public Event ClipboardChanging As EventHandler
'使用法
Dim instance As FpSpread
Dim handler As EventHandler
AddHandler instance.ClipboardChanging, handler
次のサンプルコードは、ClipboardChangingイベントを使用します。
private void fpSpread1_ClipboardChanging(object sender, EventArgs e)
{
listBox1.Items.Add("Changing");
}
Private Sub FpSpread1_ClipboardChanging(sender As Object, e As EventArgs) Handles FpSpread1.ClipboardChanging
ListBox1.Items.Add("Changing")
End Sub