Class ExcelHeaderCellEventArgs
Represents the event arguments for handling Excel header query cell information.
Inheritance
System.Object
ExcelHeaderCellEventArgs
Inherited Members
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.EJ2.TreeGridExport
Assembly: Syncfusion.EJ2.GridExport.dll
Syntax
public class ExcelHeaderCellEventArgs
Remarks
This class defines the event arguments used when querying header cell information during Excel operations. It provides details about the header cell, its associated column, style, and value. These arguments are used in event handlers to customize header cell behavior and appearance during Excel-related operations.
Constructors
ExcelHeaderCellEventArgs()
Declaration
public ExcelHeaderCellEventArgs()
Properties
Cell
Gets or sets the cell that contains colspan.
Declaration
public IRange Cell { get; set; }
Property Value
Type |
---|
Syncfusion.XlsIO.IRange |
Column
Gets or sets the Grid cell instance associated with the header cell.
Declaration
public TreeGridColumn Column { get; set; }
Property Value
Type |
---|
TreeGridColumn |
Style
Gets or sets the style of the current header cell.
Declaration
public IStyle Style { get; set; }
Property Value
Type |
---|
Syncfusion.XlsIO.IStyle |
Value
Gets or sets the value of the current header cell.
Declaration
public object Value { get; set; }
Property Value
Type |
---|
System.Object |