Class BaseGridPrintRenderer
Represents a basic class for grid printing.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public abstract class BaseGridPrintRenderer : IGridPrintRenderer
Constructors
BaseGridPrintRenderer(RadGridView)
Initializes a new instance of the BaseGridPrintRenderer class.
Declaration
public BaseGridPrintRenderer(RadGridView grid)
Parameters
|
RadGridView
grid
The grid. |
Properties
GridView
Gets the associated RadGridView.
Declaration
public RadGridView GridView { get; }
Property Value
|
RadGridView
|
ViewDefinitionType
Gets the view definition type this print style is for.
Declaration
public abstract Type ViewDefinitionType { get; }
Property Value
|
System.Type
The type of the view definition. |
Implements
Methods
CreateDataCellPrintElement(GridViewCellInfo)
Creates a data print cell element.
Declaration
protected virtual CellPrintElement CreateDataCellPrintElement(GridViewCellInfo cellInfo)
Parameters
|
GridViewCellInfo
cellInfo
The actual grid view cell that will be printed. |
Returns
|
CellPrintElement
The CellPrintElement to be printed. |
CreateDataCellPrintElement(GridViewCellInfo, RectangleF)
Creates a data print cell element.
Declaration
protected virtual CellPrintElement CreateDataCellPrintElement(GridViewCellInfo cellInfo, RectangleF cellBounds)
Parameters
|
GridViewCellInfo
cellInfo
The actual grid view cell that will be printed. |
|
System.Drawing.RectangleF
cellBounds
The bounds definining the print cell element. |
Returns
|
CellPrintElement
The CellPrintElement to be printed. |
CreateGroupCellPrintElement(GridViewGroupRowInfo)
Creates a group print cell element.
Declaration
protected virtual CellPrintElement CreateGroupCellPrintElement(GridViewGroupRowInfo row)
Parameters
|
GridViewGroupRowInfo
row
The group row that this print cell represents. |
Returns
|
CellPrintElement
The CellPrintElement to be printed. |
CreateHeaderCellPrintElement(GridViewColumn)
Creates a header print cell element.
Declaration
protected virtual CellPrintElement CreateHeaderCellPrintElement(GridViewColumn column)
Parameters
|
GridViewColumn
column
The column which header is the cell. |
Returns
|
CellPrintElement
The CellPrintElement to be printed. |
CreateImageCellPrintElement(GridViewCellInfo)
Creates an image print cell element.
Declaration
protected virtual CellPrintElement CreateImageCellPrintElement(GridViewCellInfo cellInfo)
Parameters
|
GridViewCellInfo
cellInfo
The actual grid cell that holds the image info. |
Returns
|
CellPrintElement
The CellPrintElement to be printed. |
CreateSparklineCellPrintElement(GridViewCellInfo, RectangleF)
Declaration
protected virtual CellPrintElement CreateSparklineCellPrintElement(GridViewCellInfo cellInfo, RectangleF cellBounds)
Parameters
|
GridViewCellInfo
cellInfo
|
|
System.Drawing.RectangleF
cellBounds
|
Returns
|
CellPrintElement
|
CreateSummaryCellPrintElement(GridViewCellInfo)
Creates a summary print cell element.
Declaration
protected virtual CellPrintElement CreateSummaryCellPrintElement(GridViewCellInfo cellInfo)
Parameters
|
GridViewCellInfo
cellInfo
The actual grid view summary cell that will be printed. |
Returns
|
CellPrintElement
The CellPrintElement to be printed. |
DetachSparkElemnt()
Declaration
protected virtual void DetachSparkElemnt()
DrawPage(PrintGridTraverser, Rectangle, Graphics, GridPrintSettings, Int32)
Renders a whole page using the settings provided.
Declaration
public abstract void DrawPage(PrintGridTraverser traverser, Rectangle drawArea, Graphics graphics, GridPrintSettings settings, int pageNumber)
Parameters
|
PrintGridTraverser
traverser
The traverser to iterate the grid with. |
|
System.Drawing.Rectangle
drawArea
The size of the drawable area. |
|
System.Drawing.Graphics
graphics
The graphics used for the drawing. |
|
GridPrintSettings
settings
The print settings used for the drawing. |
|
System.Int32
pageNumber
The number of the current page. |
Implements
GetCellDesiredSize(GridCellElement)
Gets the cell's desired width
Declaration
protected virtual SizeF GetCellDesiredSize(GridCellElement cell)
Parameters
|
GridCellElement
cell
An instance of GridCellElement |
Returns
|
System.Drawing.SizeF
Returns the desired cell's with |
GetDataRowHeight(GridViewRowInfo, TableViewRowLayoutBase)
Gets the height of a given data row taking into account if the grid AutoSizeRows property is true.
Declaration
protected virtual int GetDataRowHeight(GridViewRowInfo row, TableViewRowLayoutBase rowLayout)
Parameters
|
GridViewRowInfo
row
The row to be measured. |
|
TableViewRowLayoutBase
rowLayout
The row layout. |
Returns
|
System.Int32
|
OnChildViewPrinting(ChildViewPrintingEventArgs)
Occurs for hierarchy rows with more than one child views.
Declaration
protected virtual void OnChildViewPrinting(ChildViewPrintingEventArgs e)
Parameters
| ChildViewPrintingEventArgs e |
OnPrintCellFormatting(PrintCellFormattingEventArgs)
Occurs for each cell that is being printed.
Declaration
protected virtual void OnPrintCellFormatting(PrintCellFormattingEventArgs e)
Parameters
| PrintCellFormattingEventArgs e |
OnPrintCellPaint(PrintCellPaintEventArgs)
Occurs after a cell is being formatted and painted.
Declaration
protected virtual void OnPrintCellPaint(PrintCellPaintEventArgs e)
Parameters
| PrintCellPaintEventArgs e |
Reset()
Resets the print style for subsequent use.
Declaration
public abstract void Reset()
Implements
Events
ChildViewPrinting
Fires for hierarchy rows with more than one child views.
Declaration
public event ChildViewPrintingEventHandler ChildViewPrinting
Event Type
|
ChildViewPrintingEventHandler
|
PrintCellFormatting
Fires for each cell that is being printed.
Declaration
public event PrintCellFormattingEventHandler PrintCellFormatting
Event Type
|
PrintCellFormattingEventHandler
|
PrintCellPaint
Fires after a cell is being formatted and painted.
Declaration
public event PrintCellPaintEventHandler PrintCellPaint
Event Type
|
PrintCellPaintEventHandler
|