GrapeCity SPREAD for Windows Forms 12.0J
HeaderIndicatorPositionAdjustingChanged イベント


HeaderIndicatorPositionAdjustingプロパティが変更されたときに発生します。
構文
'Declaration
 
Public Event HeaderIndicatorPositionAdjustingChanged As EventHandler
'使用法
 
Dim instance As FpSpread
Dim handler As EventHandler
 
AddHandler instance.HeaderIndicatorPositionAdjustingChanged, handler
public event EventHandler HeaderIndicatorPositionAdjustingChanged
次のサンプルコードは、HeaderIndicatorPositionAdjustingChangedイベントを使用します。
private void button1_Click(object sender, EventArgs e)
        {
            fpSpread1.HeaderIndicatorPositionAdjusting = 2;
        }

        private void fpSpread1_HeaderIndicatorPositionAdjustingChanged(object sender, EventArgs e)
        {
            listBox1.Items.Add("changed");
        }
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        FpSpread1.HeaderIndicatorPositionAdjusting = 2
    End Sub

    Private Sub FpSpread1_HeaderIndicatorPositionAdjustingChanged(sender As Object, e As EventArgs) Handles FpSpread1.HeaderIndicatorPositionAdjustingChanged
        ListBox1.Items.Add("changed")
    End Sub
参照

FpSpread クラス
FpSpread メンバ

 

 


Copyright © 2004 GrapeCity inc.