Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / WorksheetBase Class / GetExpression Method
An integer value indicates the row index of cell.
An integer value indicates the column index of cell.


In This Topic
    GetExpression Method (WorksheetBase)
    In This Topic
    Gets the formula, as an expression value, for the cell of the specified row and column of this sheet.
    Syntax
    'Declaration
     
    
    Public Function GetExpression( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Expression
    'Usage
     
    
    Dim instance As WorksheetBase
    Dim row As Integer
    Dim column As Integer
    Dim value As Expression
     
    value = instance.GetExpression(row, column)
    public Expression GetExpression( 
       int row,
       int column
    )

    Parameters

    row
    An integer value indicates the row index of cell.
    column
    An integer value indicates the column index of cell.

    Return Value

    The GrapeCity.CalcEngine.Expression value of the cell.
    See Also