Class
PrintCellFormattingEventArgs

Represents event arguments for the PrintCellFormatting event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class PrintCellFormattingEventArgs : EventArgs

Inheritance: objectEventArgsPrintCellFormattingEventArgs

Inherited Members EventArgs.Empty

Constructors

PrintCellFormattingEventArgs(GridViewRowInfo, GridViewColumn, CellPrintElement)

Initializes a new instance of the PrintCellFormattingEventArgs class.

Declaration

cs-api-definition
public PrintCellFormattingEventArgs(GridViewRowInfo row, GridViewColumn column, CellPrintElement printCell)

Parameters

row

GridViewRowInfo

The row.

column

GridViewColumn

The column.

printCell

CellPrintElement

The print cell.

Properties

Column

Gets the column that is currently printed.

Declaration

cs-api-definition
public GridViewColumn Column { get; }

Property Value

GridViewColumn

PrintCell

Gets the print cell element which will be printed.

Declaration

cs-api-definition
public CellPrintElement PrintCell { get; }

Property Value

CellPrintElement

Row

Gets the row that is currently printed.

Declaration

cs-api-definition
public GridViewRowInfo Row { get; }

Property Value

GridViewRowInfo