GrapeCity SPREAD for Windows Forms 11.0J
TouchZoomSnapDistanceChanged イベント


TouchZoomSnapDistanceプロパティが変更されたときに発生します。
構文
'Declaration
 
Public Event TouchZoomSnapDistanceChanged As EventHandler
'使用法
 
Dim instance As FpSpread
Dim handler As EventHandler
 
AddHandler instance.TouchZoomSnapDistanceChanged, handler
public event EventHandler TouchZoomSnapDistanceChanged
次のサンプルコードは、TouchZoomSnapDistanceChangedイベントを使用します。
fpSpread1.TouchZoomSnapDistance = 2;

private void fpSpread1_TouchZoomSnapDistanceChanged(object sender, EventArgs e)
        {
            listBox1.Items.Add("Changed");
        }
FpSpread1.TouchZoomSnapDistance = 2

Private Sub FpSpread1_TouchZoomSnapDistanceChanged(sender As Object, e As EventArgs) Handles FpSpread1.TouchZoomSnapDistanceChanged
        ListBox1.Items.Add("Changed")
    End Sub
参照

FpSpread クラス
FpSpread メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.