WorkbookLoadedEventArgs Class
Represents a class which holds the properties of WorkbookLoaded event.
Inheritance
System.Object
WorkbookLoadedEventArgs
Namespace: Syncfusion.Windows.Forms.Spreadsheet.Helpers
Assembly: Syncfusion.Spreadsheet.Windows.dll
Syntax
public class WorkbookLoadedEventArgs : EventArgs
Constructors
WorkbookLoadedEventArgs()
Initializes a new instance of the WorkbookLoadedEventArgs class.
Declaration
public WorkbookLoadedEventArgs()
WorkbookLoadedEventArgs(IWorkbook, List<SpreadsheetGrid>)
Initializes a new instance of the WorkbookLoadedEventArgs class.
Declaration
public WorkbookLoadedEventArgs(IWorkbook workbook, List<SpreadsheetGrid> gridCollection)
Parameters
| Type | Name | Description |
|---|---|---|
| IWorkbook | workbook | An instance of IWorkbook. |
| System.Collections.Generic.List<SpreadsheetGrid> | gridCollection | Collection of Grid. |
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. |