Class PdfQueryCellInfoEventArgs<T>
Provides information about an PdfQueryCellInfoEvent event.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class PdfQueryCellInfoEventArgs<T> : PdfHeaderQueryCellInfoEventArgs
Type Parameters
Name |
---|
T |
Constructors
PdfQueryCellInfoEventArgs()
Declaration
public PdfQueryCellInfoEventArgs()
Properties
ColSpan
Gets the column span of the current cell.
Declaration
public int ColSpan { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer value that represents the number of columns spanned by the current cell. |
Data
Gets the row data associated with the current cell in the PDF grid column.
Declaration
public T Data { get; }
Property Value
Type | Description |
---|---|
T | A |
Row
Gets the Syncfusion.PdfExport.PdfGridRow object that represents the row in the PDF grid column.
Declaration
public PdfGridRow Row { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.PdfExport.PdfGridRow | A |
Value
Gets or sets the value of the current cell.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object that represents the value of the current cell. |