[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Workbook.SheetChange

SheetChange Event

Occurs when something changes in the cells of a sheet.

Implements
Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public event EventHandler<RangeEventArgs> SheetChange
Public Event SheetChange As EventHandler(Of RangeEventArgs)
Returns
Type Description
EventHandler<RangeEventArgs> Occurs when something changes in the cells of a sheet.
Examples
IRange rangeFromEvent = null;
workbook.SheetChange += (sender, e) =>
{
    rangeFromEvent = e.Range;
};
workbook.ActiveSheet.Range["A1"].Value = "Updated";
IRange changedRange = rangeFromEvent;