Class WorkbookUnloadedEventArgs
Represents a class which holds the properties of WorkbookUnloaded event
Inheritance
System.Object
System.EventArgs
WorkbookUnloadedEventArgs
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.Windows.Forms.Spreadsheet.Helpers
Assembly: Syncfusion.Spreadsheet.Windows.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. |