Class WorkbookLoadedEventArgs
Represents a class which holds the properties of WorkbookLoaded event.
Inheritance
System.Object
System.EventArgs
WorkbookLoadedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.UI.Xaml.Spreadsheet.Helpers
Assembly: Syncfusion.SfSpreadsheet.WPF.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. |