IGridPrintRenderer
Interface
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public interface IGridPrintRenderer
Derived Classes:
Properties
Gets the view definition type this print style is for.
C#
Type ViewDefinitionType { get; }
The type of the view definition.
Methods
Renders a whole page using the settings provided.
C#
void DrawPage(PrintGridTraverser traverser, Rectangle drawArea, Graphics graphics, GridPrintSettings settings, int pageNumber)
The traverser to iterate the grid with.
drawAreaRectangleThe size of the drawable area.
graphicsGraphicsThe graphics used for the drawing.
settingsGridPrintSettingsThe print settings used for the drawring.
pageNumberintThe number of the current page.
Resets the print style for subsequent use.
C#
void Reset()