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