FarPoint Spreadコンポーネントに影響を与える可能性のあるクリップボードの変更が起こったときに発生します。
構文
'Declaration
Public Event ClipboardChanged As EventHandler
'使用法
Dim instance As FpSpread
Dim handler As EventHandler
AddHandler instance.ClipboardChanged, handler
次のサンプルコードは、ClipboardChangedイベントを使用します。
private void fpSpread1_ClipboardChanged(object sender, EventArgs e)
{
listBox1.Items.Add("Changed");
}
Private Sub FpSpread1_ClipboardChanged(sender As Object, e As EventArgs) Handles FpSpread1.ClipboardChanged
ListBox1.Items.Add("Changed")
End Sub