Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.UI Namespace / UIManager Class / OnDataChanged Method / OnDataChanged(IWorksheet,Int32,Int32) Method
A GrapeCity.Spreadsheet.IWorksheet indicates the worksheet contains the changed cell.
An integer value indicates the row index of the cell.
An integer value indicates the column index of the cell.


In This Topic
    OnDataChanged(IWorksheet,Int32,Int32) Method
    In This Topic
    Called when cell's value is changed.
    Syntax
    'Declaration
     
    
    Protected Overloads MustOverride Sub OnDataChanged( _
       ByVal worksheet As IWorksheet, _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) 
    'Usage
     
    
    Dim instance As UIManager
    Dim worksheet As IWorksheet
    Dim row As Integer
    Dim column As Integer
     
    instance.OnDataChanged(worksheet, row, column)
    protected abstract void OnDataChanged( 
       IWorksheet worksheet,
       int row,
       int column
    )

    Parameters

    worksheet
    A GrapeCity.Spreadsheet.IWorksheet indicates the worksheet contains the changed cell.
    row
    An integer value indicates the row index of the cell.
    column
    An integer value indicates the column index of the cell.
    See Also