Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / CalculationEngine Class / NotifyVisualChanged Method / NotifyVisualChanged(IWorksheet,Int32,Int32,Int32,Int32) Method
The worksheet contains the cell range.
The top row of the cell range.
The left column of the cell range.
The bottom row of the cell range.
The right column of the cell range.


In This Topic
    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 worksheet As IWorksheet, _
       Optional ByVal row As Integer, _
       Optional ByVal column As Integer, _
       Optional ByVal row2 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 worksheet,
       int row,
       int column,
       int row2,
       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