Spread Windows Forms 12.0 Product Documentation
ShowGrippersInEditingStatusChanged Event
Example 


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

Reference

FpSpread Class
FpSpread Members