CreateExpressionView Method
Creates the expression view which binds the specified formula to a cell range.
'Declaration
Public Function CreateExpressionView( _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal column2 As Integer, _
ByVal As String, _
Optional ByVal 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)
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.