Spread Windows Forms 12.0 Product Documentation
HeaderIndicatorPositionAdjustingChanged Event
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : HeaderIndicatorPositionAdjustingChanged Event
Occurs when the HeaderIndicatorPositionAdjusting property has changed.
Syntax
'Declaration
 
Public Event HeaderIndicatorPositionAdjustingChanged As EventHandler
'Usage
 
Dim instance As FpSpread
Dim handler As EventHandler
 
AddHandler instance.HeaderIndicatorPositionAdjustingChanged, handler
public event EventHandler HeaderIndicatorPositionAdjustingChanged
Example
This example uses the HeaderIndicatorPositionAdjustingChanged event.
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
See Also

Reference

FpSpread Class
FpSpread Members