New to Telerik UI for WinFormsStart a free 30-day trial

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 EventArgs.Empty

Constructors

Initializes a new instance of the PrintCellFormattingEventArgs class.

C#
public PrintCellFormattingEventArgs(GridViewRowInfo row, GridViewColumn column, CellPrintElement printCell)
Parameters:rowGridViewRowInfo

The row.

columnGridViewColumn

The column.

printCellCellPrintElement

The 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; }