Spread Windows Forms 12.0 Product Documentation
Cancel Property (SelectionChangingEventArgs)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SelectionChangingEventArgs Class : Cancel Property
Gets or sets whether the selection action should be cancelled.
Syntax
'Declaration
 
Public Property Cancel As Boolean
'Usage
 
Dim instance As SelectionChangingEventArgs
Dim value As Boolean
 
instance.Cancel = value
 
value = instance.Cancel
public bool Cancel {get; set;}

Property Value

Boolean: true if cancelled; false otherwise
Example
This example cancels the selection if the users tries to select only the first column.
private void fpSpread1SelectionChanging(object sender, FarPoint.Win.Spread.SelectionChangingEventArgs e) 
{
    if (e.CurrentColumn == 0)
    {
        e.Cancel = true;
    }
}
Private Sub FpSpread1SelectionChanging(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SelectionChangingEventArgs)
Handles FpSpread1.SelectionChanging
    If e.CurrentColumn = 0 Then
        e.Cancel = True
    End If
End Sub
See Also

Reference

SelectionChangingEventArgs Class
SelectionChangingEventArgs Members