[]
Notifies the calculation engine the visual of the specified cell range is repainted.
public void NotifyVisualChanged(IWorksheet worksheet, int row = 0, int column = 0, int row2 = 2147483647, int column2 = 2147483647)
Public Sub NotifyVisualChanged(worksheet As IWorksheet, Optional row As Integer = 0, Optional column As Integer = 0, Optional row2 As Integer = 2147483647, Optional column2 As Integer = 2147483647)
Type | Name | Description |
---|---|---|
IWorksheet | worksheet | The worksheet contains the cell range. |
int | row | The top row of the cell range. |
int | column | The left column of the cell range. |
int | row2 | The bottom row of the cell range. |
int | column2 | The right column of the cell range. |
Notifies the calculation engine the visual of the specified cell range is repainted.
public void NotifyVisualChanged(IWorksheet worksheet, Reference[] ranges)
Public Sub NotifyVisualChanged(worksheet As IWorksheet, ranges As Reference())
Type | Name | Description |
---|---|---|
IWorksheet | worksheet | The worksheet contains the cell range. |
Reference[] | ranges | The collection of changed cell ranges. |
Notifies the calculation engine the visual of all worksheet in the specified workbook are repainted.
public void NotifyVisualChanged(IWorkbook workbook)
Public Sub NotifyVisualChanged(workbook As IWorkbook)
Type | Name | Description |
---|---|---|
IWorkbook | workbook | The workbook to repaint. |