Spread Windows Forms 12.0 Product Documentation
TouchDropDownScaleChanged Event
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : TouchDropDownScaleChanged Event
Occurs when the TouchDropDownScale property has changed.
Syntax
'Declaration
 
Public Event TouchDropDownScaleChanged As EventHandler(Of EventArgs)
'Usage
 
Dim instance As FpSpread
Dim handler As EventHandler(Of EventArgs)
 
AddHandler instance.TouchDropDownScaleChanged, handler
public event EventHandler<EventArgs> TouchDropDownScaleChanged
Example
This example uses the TouchDropDownScaleChanged event.
fpSpread1.TouchDropDownScale = 2;

private void fpSpread1_TouchDropDownScaleChanged(object sender, EventArgs e)
        {
            listBox1.Items.Add("Changed");
        }
fpSpread1.TouchDropDownScale = 2

Private Sub fpSpread1_TouchDropDownScaleChanged(sender As Object, e As EventArgs) Handles fpSpread1.TouchDropDownScaleChanged
        ListBox1.Items.Add("Changed")
    End Sub
See Also

Reference

FpSpread Class
FpSpread Members