skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • AI Coding Assistants
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Forums
    • Videos
    • Blogs
    • Accessibility
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class BaseGridPrintRenderer

Represents a basic class for grid printing.

Inheritance
System.Object
BaseGridPrintRenderer
ColumnGroupsViewDefinitionPrintRenderer
HtmlViewDefinitionPrintRenderer
TableViewDefinitionPrintRenderer
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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
IGridPrintRenderer.ViewDefinitionType

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
IGridPrintRenderer.DrawPage(PrintGridTraverser, Rectangle, Graphics, GridPrintSettings, Int32)

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

The ChildViewPrintingEventArgs

OnPrintCellFormatting(PrintCellFormattingEventArgs)

Occurs for each cell that is being printed.

Declaration
protected virtual void OnPrintCellFormatting(PrintCellFormattingEventArgs e)
Parameters
PrintCellFormattingEventArgs e

The PrintCellFormattingEventArgs

OnPrintCellPaint(PrintCellPaintEventArgs)

Occurs after a cell is being formatted and painted.

Declaration
protected virtual void OnPrintCellPaint(PrintCellPaintEventArgs e)
Parameters
PrintCellPaintEventArgs e

The PrintCellPaintEventArgs

Reset()

Resets the print style for subsequent use.

Declaration
public abstract void Reset()
Implements
IGridPrintRenderer.Reset()

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

Extension Methods

SvgExtentions.Traverse<T>(T, Func<T, IEnumerable<T>>)
SvgExtentions.TraverseDepthFirst<T>(T, Func<T, IEnumerable<T>>)
Getting Started
  • Install Now
  • Demos
  • Step-by-Step Tutorial
  • Sample Applications
  • SDK Samples
  • Visual Studio Extensions
Support Resources
  • Code Library
  • Knowledge Base
  • Videos
Community
  • Forums
  • Blogs
  • Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.