|
private void
Spreadsheet_WorkbookLoaded(object sender, WorkbookLoadedEventArgs args)
{
//Occurs after a range of columns has
been inserted.
spreadsheet.ActiveGrid.Model.ColumnsInserted += Model_ColumnsInserted;
//Occurs after a range of rows has been
inserted.
spreadsheet.ActiveGrid.Model.RowsInserted
+= Model_RowsInserted;
//Occurs when a range of rows is
removed.
spreadsheet.ActiveGrid.Model.RowsRemoved
+= Model_RowsRemoved;
//Occurs after a range of columns has
been removed.
spreadsheet.ActiveGrid.Model.ColumnsRemoved += Model_ColumnsRemoved;
//Occurs when the current cell value
gets changed while cell is in edit mode
spreadsheet.ActiveGrid.CurrentCellValueChanged +=
ActiveGrid_CurrentCellValueChanged;
//Occurs after the current cell is
validated.
spreadsheet.ActiveGrid.CurrentCellValidated += ActiveGrid_CurrentCellValidated;
//Occurs when the value of a cell
changes.
spreadsheet.ActiveSheet.CellValueChanged
+= ActiveSheet_CellValueChanged;
//Occurs while copying the content from
the Syncfusion.UI.Xaml.Spreadsheet.SfSpreadsheet.
spreadsheet.CopyPaste.Copying +=
CopyPaste_Copying;
//Occurs after copied the content from
the Syncfusion.UI.Xaml.Spreadsheet.SfSpreadsheet.
spreadsheet.CopyPaste.Copied +=
CopyPaste_Copied;
//Occurs while pasting the content into
Syncfusion.UI.Xaml.Spreadsheet.SfSpreadsheet.
spreadsheet.CopyPaste.Pasting +=
CopyPaste_Pasting;
//Occurs after the content is pasted
into Syncfusion.UI.Xaml.Spreadsheet.SfSpreadsheet.
spreadsheet.CopyPaste.Pasted +=
CopyPaste_Pasted;
}
|