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 Base
Declaration
public BaseGridPrintRenderer(RadGridView grid)
Parameters
Rad The grid. |
Properties
GridView
ViewDefinitionType
Gets the view definition type this print style is for.
Declaration
public abstract Type ViewDefinitionType { get; }
Property Value
System. The type of the view definition. |
Implements
Methods
CreateDataCellPrintElement(GridViewCellInfo)
Creates a data print cell element.
Declaration
protected virtual CellPrintElement CreateDataCellPrintElement(GridViewCellInfo cellInfo)
Parameters
Grid The actual grid view cell that will be printed. |
Returns
Cell The Cell |
CreateDataCellPrintElement(GridViewCellInfo, RectangleF)
Creates a data print cell element.
Declaration
protected virtual CellPrintElement CreateDataCellPrintElement(GridViewCellInfo cellInfo, RectangleF cellBounds)
Parameters
Grid The actual grid view cell that will be printed. |
System. The bounds definining the print cell element. |
Returns
Cell The Cell |
CreateGroupCellPrintElement(GridViewGroupRowInfo)
Creates a group print cell element.
Declaration
protected virtual CellPrintElement CreateGroupCellPrintElement(GridViewGroupRowInfo row)
Parameters
Grid The group row that this print cell represents. |
Returns
Cell The Cell |
CreateHeaderCellPrintElement(GridViewColumn)
Creates a header print cell element.
Declaration
protected virtual CellPrintElement CreateHeaderCellPrintElement(GridViewColumn column)
Parameters
Grid The column which header is the cell. |
Returns
Cell The Cell |
CreateImageCellPrintElement(GridViewCellInfo)
Creates an image print cell element.
Declaration
protected virtual CellPrintElement CreateImageCellPrintElement(GridViewCellInfo cellInfo)
Parameters
Grid The actual grid cell that holds the image info. |
Returns
Cell The Cell |
CreateSparklineCellPrintElement(GridViewCellInfo, RectangleF)
Declaration
protected virtual CellPrintElement CreateSparklineCellPrintElement(GridViewCellInfo cellInfo, RectangleF cellBounds)
Parameters
Grid
|
System.
|
Returns
CreateSummaryCellPrintElement(GridViewCellInfo)
Creates a summary print cell element.
Declaration
protected virtual CellPrintElement CreateSummaryCellPrintElement(GridViewCellInfo cellInfo)
Parameters
Grid The actual grid view summary cell that will be printed. |
Returns
Cell The Cell |
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
Print The traverser to iterate the grid with. |
System. The size of the drawable area. |
System. The graphics used for the drawing. |
Grid The print settings used for the drawing. |
System. The number of the current page. |
Implements
GetCellDesiredSize(GridCellElement)
Gets the cell's desired width
Declaration
protected virtual SizeF GetCellDesiredSize(GridCellElement cell)
Parameters
Grid An instance of Grid |
Returns
System. 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
Grid The row to be measured. |
Table The row layout. |
Returns
System.
|
OnChildViewPrinting(ChildViewPrintingEventArgs)
Occurs for hierarchy rows with more than one child views.
Declaration
protected virtual void OnChildViewPrinting(ChildViewPrintingEventArgs e)
Parameters
OnPrintCellFormatting(PrintCellFormattingEventArgs)
Occurs for each cell that is being printed.
Declaration
protected virtual void OnPrintCellFormatting(PrintCellFormattingEventArgs e)
Parameters
OnPrintCellPaint(PrintCellPaintEventArgs)
Occurs after a cell is being formatted and painted.
Declaration
protected virtual void OnPrintCellPaint(PrintCellPaintEventArgs e)
Parameters
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
PrintCellFormatting
Fires for each cell that is being printed.
Declaration
public event PrintCellFormattingEventHandler PrintCellFormatting
Event Type
PrintCellPaint
Fires after a cell is being formatted and painted.
Declaration
public event PrintCellPaintEventHandler PrintCellPaint