BoldSign®Effortlessly integrate e-signatures into your app with the BoldSign® API. Create a sandbox account!
private void Sheet_WorkbookLoaded(object sender, Syncfusion.UI.Xaml.Spreadsheet.Helpers.WorkbookLoadedEventArgs args)
{
//Event subscription
Sheet.ActiveGrid.CurrentCellValidated += ActiveGrid_CurrentCellValidated;
}
//Event customization
private void ActiveGrid_CurrentCellValidated(object sender, Syncfusion.UI.Xaml.CellGrid.Helpers.CurrentCellValidatedEventArgs e)
{
Sheet.Save();
} |