Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / AdvanceEventArgs Class / AdvanceNext Property
Example


In This Topic
    AdvanceNext Property
    In This Topic
    Gets whether to move to the next component.
    Syntax
    'Declaration
     
    Public ReadOnly Property AdvanceNext As Boolean
    'Usage
     
    Dim instance As AdvanceEventArgs
    Dim value As Boolean
     
    value = instance.AdvanceNext
    public bool AdvanceNext {get;}

    Property Value

    Boolean: true to advance to next control on the form; false to advance to previous 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.
    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;
    }
    
    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
    
    See Also