Represents event arguments for the PrintCellPaint.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public class PrintCellPaintEventArgs : EventArgs
Inheritance: objectEventArgsPrintCellPaintEventArgs
Inherited Members
Constructors
Initializes a new instance of the PrintCellPaintEventArgs class.
C#
public PrintCellPaintEventArgs(Graphics graphics, GridViewRowInfo row, GridViewColumn column, Rectangle cellRect)
The graphics.
rowGridViewRowInfoThe row.
columnGridViewColumnThe column.
cellRectRectangleThe cell rect.
Properties
Gets the rectangle in which the cell will be printed.
C#
public Rectangle CellRect { get; set; }
Gets the column that is currently printed.
C#
public GridViewColumn Column { get; }
Gets the row that is currently printed.
C#
public GridViewRowInfo Row { get; }