Class PrintCellFormattingEventArgs
Represents event arguments for the PrintCellFormatting event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class PrintCellFormattingEventArgs : EventArgs
Constructors
PrintCellFormattingEventArgs(GridViewRowInfo, GridViewColumn, CellPrintElement)
Initializes a new instance of the PrintCellFormattingEventArgs class.
Declaration
public PrintCellFormattingEventArgs(GridViewRowInfo row, GridViewColumn column, CellPrintElement printCell)
Parameters
GridViewRowInfo
row
The row. |
GridViewColumn
column
The column. |
CellPrintElement
printCell
The print cell. |
Properties
Column
Gets the column that is currently printed.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
|
PrintCell
Gets the print cell element which will be printed.
Declaration
public CellPrintElement PrintCell { get; }
Property Value
CellPrintElement
|
Row
Gets the row that is currently printed.
Declaration
public GridViewRowInfo Row { get; }
Property Value
GridViewRowInfo
|