Spread Windows Forms 6.0 Product Documentation
Cancel Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > AdvanceEventArgs Class : Cancel Property


Glossary Item Box

Gets or sets whether to cancel default processing.

Syntax

Visual Basic (Declaration) 
Public Property Cancel As Boolean
Visual Basic (Usage)Copy Code
Dim instance As AdvanceEventArgs
Dim value As Boolean
 
instance.Cancel = value
 
value = instance.Cancel
C# 
public bool Cancel {get; set;}

Property Value

Boolean: true if cancelled; false otherwise

Remarks

By default, focus will not move to the previous or next control. Set Cancel to false or set the focus to move to the next control.

Example

This example shows the use of the property by popping up a message box if the user clicks in the last cell of the spreadsheet and presses the Tab key to move to the next control on the form.
C#Copy Code
private void fpSpread1_Advance(object sender, FarPoint.Win.Spread.AdvanceEventArgs e)
{
    if (e.AdvanceNext == true)
    {
        MessageBox.Show("We're going to the next control!!");
    }
    else
        e.Cancel = false;
}
Visual BasicCopy Code
Private Sub FpSpread1_Advance(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.AdvanceEventArgs) Handles FpSpread1.Advance
    If e.AdvanceNext = True Then
          MessageBox.Show("We're going to the next control!!")
    Else
          e.Cancel = False
    End If
End Sub

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.