NotifyVisualChanged(IWorksheet,Int32,Int32,Int32,Int32) Method
In This Topic
Notifies the calculation engine the visual of the specified cell range is repainted.
Syntax
'Declaration
Public Overloads Sub NotifyVisualChanged( _
ByVal As IWorksheet, _
Optional ByVal As Integer, _
Optional ByVal column As Integer, _
Optional ByVal As Integer, _
Optional ByVal column2 As Integer _
)
'Usage
Dim instance As CalculationEngine
Dim worksheet As IWorksheet
Dim row As Integer
Dim column As Integer
Dim row2 As Integer
Dim column2 As Integer
instance.NotifyVisualChanged(worksheet, row, column, row2, column2)
public void NotifyVisualChanged(
IWorksheet ,
int ,
int column,
int ,
int column2
)
Parameters
- worksheet
- The worksheet contains the cell range.
- row
- The top row of the cell range.
- column
- The left column of the cell range.
- row2
- The bottom row of the cell range.
- column2
- The right column of the cell range.
See Also