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