Class PrintCellPaintEventArgs
Represents event arguments for the PrintCellPaint.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class PrintCellPaintEventArgs : EventArgs
Constructors
PrintCellPaintEventArgs(Graphics, GridViewRowInfo, GridViewColumn, Rectangle)
Initializes a new instance of the PrintCellPaintEventArgs class.
Declaration
public PrintCellPaintEventArgs(Graphics graphics, GridViewRowInfo row, GridViewColumn column, Rectangle cellRect)
Parameters
System.Drawing.Graphics
graphics
The graphics. |
GridViewRowInfo
row
The row. |
GridViewColumn
column
The column. |
System.Drawing.Rectangle
cellRect
The cell rect. |
Properties
CellRect
Gets the rectangle in which the cell will be printed.
Declaration
public Rectangle CellRect { get; set; }
Property Value
System.Drawing.Rectangle
|
Column
Gets the column that is currently printed.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
|
Graphics
Gets the Graphics used for the painting.
Declaration
public Graphics Graphics { get; }
Property Value
System.Drawing.Graphics
|
Row
Gets the row that is currently printed.
Declaration
public GridViewRowInfo Row { get; }
Property Value
GridViewRowInfo
|