Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Worksheet Class / GetExpression2 Method
An integer value indicates the row index of cell.
An integer value indicates the column index of cell.
A boolean value indicates whether the cell is spilled from a dynamic array.


In This Topic
    GetExpression2 Method (Worksheet)
    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 GetExpression2( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByRef isSpilledCell As Boolean _
    ) As Expression
    'Usage
     
    
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim isSpilledCell As Boolean
    Dim value As Expression
     
    value = instance.GetExpression2(row, column, isSpilledCell)
    public Expression GetExpression2( 
       int row,
       int column,
       out bool isSpilledCell
    )

    Parameters

    row
    An integer value indicates the row index of cell.
    column
    An integer value indicates the column index of cell.
    isSpilledCell
    A boolean value indicates whether the cell is spilled from a dynamic array.

    Return Value

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