Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SelectionChangingEventArgs Class / CurrentColumn Property
Example


In This Topic
    CurrentColumn Property
    In This Topic
    Gets the column index of the cell that contains the mouse pointer.
    Syntax
    'Declaration
     
    Public ReadOnly Property CurrentColumn As Integer
    'Usage
     
    Dim instance As SelectionChangingEventArgs
    Dim value As Integer
     
    value = instance.CurrentColumn
    public int CurrentColumn {get;}

    Property Value

    Integer index of the current column
    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