Class
PrintCellPaintEventArgs

Represents event arguments for the PrintCellPaint.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class PrintCellPaintEventArgs : EventArgs

Inheritance: objectEventArgsPrintCellPaintEventArgs

Inherited Members EventArgs.Empty

Constructors

PrintCellPaintEventArgs(Graphics, GridViewRowInfo, GridViewColumn, Rectangle)

Initializes a new instance of the PrintCellPaintEventArgs class.

Declaration

cs-api-definition
public PrintCellPaintEventArgs(Graphics graphics, GridViewRowInfo row, GridViewColumn column, Rectangle cellRect)

Parameters

graphics

Graphics

The graphics.

row

GridViewRowInfo

The row.

column

GridViewColumn

The column.

cellRect

Rectangle

The cell rect.

Properties

CellRect

Gets the rectangle in which the cell will be printed.

Declaration

cs-api-definition
public Rectangle CellRect { get; set; }

Property Value

Rectangle

Column

Gets the column that is currently printed.

Declaration

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

Property Value

GridViewColumn

Graphics

Gets the Graphics used for the painting.

Declaration

cs-api-definition
public Graphics Graphics { get; }

Property Value

Graphics

Row

Gets the row that is currently printed.

Declaration

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

Property Value

GridViewRowInfo