Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / DefaultSheetDataModel Class / SetExpression Method
Row index of the cell
Column index of the cell
Formula to be set as an expression
Example


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

    Parameters

    row
    Row index of the cell
    column
    Column index of the cell
    value
    Formula to be set as an expression
    Example
    This example returns the formula, as an expression value, for the cell of the specified row and column.
    See Also