Class PdfQueryCellInfoEventArgs
Class that defines the Pdf query cell info event arguments.
Inheritance
System.Object
PdfQueryCellInfoEventArgs
Implements
System.IEquatable<PdfQueryCellInfoEventArgs>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class PdfQueryCellInfoEventArgs : Object, IEquatable<PdfQueryCellInfoEventArgs>
Constructors
PdfQueryCellInfoEventArgs()
Declaration
public PdfQueryCellInfoEventArgs()
Properties
Cell
Defines the current PDF cell
Declaration
public object Cell { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Column
Defines the column of the current cell.
Declaration
public ColumnModel Column { get; set; }
Property Value
Type | Description |
---|---|
ColumnModel |
Data
Defines the data of the cell
Declaration
public object Data { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Style
Defines the style of the current cell.
Declaration
public PdfGanttCellStyle Style { get; set; }
Property Value
Type | Description |
---|---|
PdfGanttCellStyle |
Value
Defines the value of the current cell.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
Equals(PdfQueryCellInfoEventArgs)
Returns boolean value by comparing pdfQueryCellInfoEventArgs
Declaration
public bool Equals(PdfQueryCellInfoEventArgs pdfQueryCellInfoEventArgs)
Parameters
Type | Name | Description |
---|---|---|
PdfQueryCellInfoEventArgs | pdfQueryCellInfoEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Returns boolean value by comparing object
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Returns hashcode for current object
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>