Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Worksheet Class / CreateExpressionView Method
An integer value indicates the top row index of cell range.
An integer value indicates the left column index of cell range.
An integer value indicates the bottom row index of cell range.
An integer value indicates the right column index of cell range.
An string value indicates the formula text.
A boolean value indicates that the expression view cause Spread repaint.


In This Topic
    CreateExpressionView Method (Worksheet)
    In This Topic
    Creates the expression view which binds the specified formula to a cell range.
    Syntax
    'Declaration
     
    
    Public Function CreateExpressionView( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal row2 As Integer, _
       ByVal column2 As Integer, _
       ByVal formulaText As String, _
       Optional ByVal visual As Boolean _
    ) As ExpressionView
    'Usage
     
    
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim row2 As Integer
    Dim column2 As Integer
    Dim formulaText As String
    Dim visual As Boolean
    Dim value As ExpressionView
     
    value = instance.CreateExpressionView(row, column, row2, column2, formulaText, visual)
    public ExpressionView CreateExpressionView( 
       int row,
       int column,
       int row2,
       int column2,
       string formulaText,
       bool visual
    )

    Parameters

    row
    An integer value indicates the top row index of cell range.
    column
    An integer value indicates the left column index of cell range.
    row2
    An integer value indicates the bottom row index of cell range.
    column2
    An integer value indicates the right column index of cell range.
    formulaText
    An string value indicates the formula text.
    visual
    A boolean value indicates that the expression view cause Spread repaint.

    Return Value

    An ExpressionView object represents the expression view.
    See Also