ShowGrippersInEditingStatusの値が変更されたときに発生します。
構文
public event EventHandler ShowGrippersInEditingStatusChanged
'Declaration
Public Event ShowGrippersInEditingStatusChanged As EventHandler
'使用法
Dim instance As FpSpread
Dim handler As EventHandler
AddHandler instance.ShowGrippersInEditingStatusChanged, handler
次のサンプルコードは、ShowGrippersInEditingStatusChangedイベントを使用します。
fpSpread1.ShowGrippersInEditingStatus = false;
private void fpSpread1_ShowGrippersInEditingStatusChanged(object sender, EventArgs e)
{
listBox1.Items.Add("Changed");
}
FpSpread1.ShowGrippersInEditingStatus = False
Private Sub FpSpread1_ShowGrippersInEditingStatusChanged(sender As Object, e As EventArgs) Handles FpSpread1.ShowGrippersInEditingStatusChanged
ListBox1.Items.Add("Changed")
End Sub