Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / UserFormulaEnteredEventArgs Class / Column Property
Example


In This Topic
    Column Property (UserFormulaEnteredEventArgs)
    In This Topic
    Gets the column index of the cell in which the user entered a formula.
    Syntax
    'Declaration
     
    Public ReadOnly Property Column As Integer
    'Usage
     
    Dim instance As UserFormulaEnteredEventArgs
    Dim value As Integer
     
    value = instance.Column
    public int Column {get;}

    Property Value

    Integer index of the column
    Example
    private void fpSpread1_UserFormulaEntered(object sender, FarPoint.Win.Spread.UserFormulaEnteredEventArgs e)
    {
        label1.Text = "The formula was entered in row " + e.Row + ", column " + e.Column;
    }
    
    Private Sub FpSpread1_UserFormulaEntered(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.UserFormulaEnteredEventArgs)
    Handles FpSpread1.UserFormulaEntered
        Label1.Text = "The formula was entered in row " & e.Row & ", column " & e.Column
    End Sub
    See Also