Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / DefaultSheetDataModel Class / GetExpression Method
Row index of the cell
Column index of the cell
Example


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

    Parameters

    row
    Row index of the cell
    column
    Column index of the cell

    Return Value

    Expression containing the formula
    Remarks
    For a list of the operators and functions you can use in formulas, refer to the Spread for .NET Formula Reference.
    Example
    This example returns the formula, as an expression value, for the cell of the specified row and column.
    See Also