Class WorkbookUnloadedEventArgs
Represents a class which holds the properties of WorkbookUnloaded event
Inheritance
System.Object
WorkbookUnloadedEventArgs
Namespace: Syncfusion.UI.Xaml.Spreadsheet.Helpers
Assembly: Syncfusion.SfSpreadsheet.UWP.dll
Syntax
public class WorkbookUnloadedEventArgs : EventArgs
Constructors
WorkbookUnloadedEventArgs()
Initializes a new instance of the WorkbookUnloadedEventArgs class.
Declaration
public WorkbookUnloadedEventArgs()
WorkbookUnloadedEventArgs(IWorkbook, List<SpreadsheetGrid>)
Initializes a new instance of the WorkbookUnloadedEventArgs class.
Declaration
public WorkbookUnloadedEventArgs(IWorkbook workbook, List<SpreadsheetGrid> gridCollection)
Parameters
Type | Name | Description |
---|---|---|
IWorkbook | workbook | |
System.Collections.Generic.List<SpreadsheetGrid> | gridCollection | Collection of SpreadsheetGrid. |
Properties
GridCollection
Gets the collection of SpreadsheetGrid .
Declaration
public List<SpreadsheetGrid> GridCollection { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<SpreadsheetGrid> | A collection. |
Workbook
Gets the instance of IWorkbook .
Declaration
public IWorkbook Workbook { get; }
Property Value
Type | Description |
---|---|
IWorkbook | An instance of IWorkbook. |