Spread Windows Forms 12.0 Product Documentation
TouchSelectionGripperThicknessChanged Event
Example 


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

Reference

FpSpread Class
FpSpread Members