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