PageRenderInfo

PageRenderInfo class

Represents the information of how a page is rendered.

public sealed class PageRenderInfo

Constructors

Name Description
PageRenderInfo(int, int, int) Initializes a new instance of the PageRenderInfo class.

Properties

Name Description
ColumnCount { get; } Get the total number of tiles columns.
PageNumber { get; } Gets the page number.
RowCount { get; } Get the total number of tiles rows.

Methods

Name Description
GetColumn(int) Returns the index of column where the tile with tileIndex is placed.
GetRow(int) Returns the index of row where the tile with tileIndex is placed.

Remarks

Some documents (spreadsheets, for example) are not possible to render a page as a single image. For those documents a page is rendered as a set of tiles. These tiles are placed in the rectangular table.

RowCount and ColumnCount represent the total number of rows and columns of this table. If document page is rendered to the single image these properties are equal to 1.

See Also