DocumentPaginator.PageCount Property

Definition

When overridden in a derived class, gets a count of the number of pages currently formatted.

public:
 abstract property int PageCount { int get(); };
public abstract int PageCount { get; }
member this.PageCount : int
Public MustOverride ReadOnly Property PageCount As Integer

Property Value

A count of the number of pages that have been formatted.

Remarks

If IsPageCountValid is true, pagination is complete and PageCount is the total number of pages in the document.

If IsPageCountValid is false, pagination is in process and PageCount is the number of pages currently formatted (not the total).

This value may change if PageSize or content changes, because those events would force a repagination.

Applies to

See also