DynamicDocumentPaginator Class

Definition

Provides an abstract base class that supports automatic background pagination and tracking content positions across repaginations in addition to the methods and properties of its own base class.

public ref class DynamicDocumentPaginator abstract : System::Windows::Documents::DocumentPaginator
public abstract class DynamicDocumentPaginator : System.Windows.Documents.DocumentPaginator
type DynamicDocumentPaginator = class
    inherit DocumentPaginator
Public MustInherit Class DynamicDocumentPaginator
Inherits DocumentPaginator
Inheritance
DynamicDocumentPaginator

Remarks

By default, a DynamicDocumentPaginator will automatically pre-paginate content in the background (this process begins when IsBackgroundPaginationEnabled is true, which is the default setting).

When IsBackgroundPaginationEnabled is true, the layout will also be repaginated due to changes in content or changes in PageSize.

The PaginationProgress event occurs upon completion of pagination (or repagination) of one or more pages, such as in the following situations:

A PaginationCompleted event also occurs when background pagination is disabled. For example, if there is only one page of content and IsBackgroundPaginationEnabled = false), calling GetPage with an argument of 0 will result in two events:

  1. A PaginationProgress event with PaginationProgressEventArgs settings of Start = 0 and Count = 1.

  2. A PaginationCompleted event.

Constructors

DynamicDocumentPaginator()

Initializes a new instance of the DynamicDocumentPaginator class.

Properties

IsBackgroundPaginationEnabled

Gets or sets a value indicating whether pagination is performed automatically in the background in response to certain events, such as a change in page size.

IsPageCountValid

When overridden in a derived class, gets a value indicating whether PageCount is the total number of pages.

(Inherited from DocumentPaginator)
PageCount

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

(Inherited from DocumentPaginator)
PageSize

When overridden in a derived class, gets or sets the suggested width and height of each page.

(Inherited from DocumentPaginator)
Source

When overridden in a derived class, returns the element being paginated.

(Inherited from DocumentPaginator)

Methods

CancelAsync(Object)

Cancels a previous GetPageAsync or GetPageNumberAsync operation.

(Inherited from DocumentPaginator)
ComputePageCount()

Forces a pagination of the content, updates PageCount with the new total, and sets IsPageCountValid to true.

(Inherited from DocumentPaginator)
ComputePageCountAsync()

Asynchronously, forces a pagination of the content, updates PageCount with the new total, and sets IsPageCountValid to true.

(Inherited from DocumentPaginator)
ComputePageCountAsync(Object)

Asynchronously, forces a pagination of the content, updates PageCount with the new total, sets IsPageCountValid to true.

(Inherited from DocumentPaginator)
Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetObjectPosition(Object)

When overridden in a derived class, returns a ContentPosition for the specified Object.

GetPage(Int32)

When overridden in a derived class, gets the DocumentPage for the specified page number.

(Inherited from DocumentPaginator)
GetPageAsync(Int32)

Asynchronously returns (through the GetPageCompleted event) the DocumentPage for the specified page number.

(Inherited from DocumentPaginator)
GetPageAsync(Int32, Object)

Asynchronously returns (through the GetPageCompleted event) the DocumentPage for the specified page number and assigns the specified ID to the asynchronous task.

(Inherited from DocumentPaginator)
GetPageNumber(ContentPosition)

When overridden in a derived class, returns the zero-based page number of the specified ContentPosition.

GetPageNumberAsync(ContentPosition)

Asynchronously, returns (through the This method raises the GetPageNumberCompleted event) the zero-based page number of the specified ContentPosition.

GetPageNumberAsync(ContentPosition, Object)

Asynchronously, returns (through the This method raises the GetPageNumberCompleted event) the zero-based page number of the specified ContentPosition.

GetPagePosition(DocumentPage)

When overridden in a derived class, gets the position of the specified page in the document's content.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
OnComputePageCountCompleted(AsyncCompletedEventArgs)

Raises the ComputePageCountCompleted event.

(Inherited from DocumentPaginator)
OnGetPageCompleted(GetPageCompletedEventArgs)

Raises the GetPageCompleted event.

(Inherited from DocumentPaginator)
OnGetPageNumberCompleted(GetPageNumberCompletedEventArgs)

Raises the GetPageNumberCompleted event.

OnPagesChanged(PagesChangedEventArgs)

Raises the PagesChanged event.

(Inherited from DocumentPaginator)
OnPaginationCompleted(EventArgs)

Raises the PaginationCompleted event.

OnPaginationProgress(PaginationProgressEventArgs)

Raises the PaginationProgress event.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Events

ComputePageCountCompleted

Occurs when a ComputePageCountAsync operation has finished.

(Inherited from DocumentPaginator)
GetPageCompleted

Occurs when GetPageAsync has completed.

(Inherited from DocumentPaginator)
GetPageNumberCompleted

Occurs when GetPageNumberAsync has completed.

PagesChanged

Occurs when the document content is changed.

(Inherited from DocumentPaginator)
PaginationCompleted

Occurs when all document content has been paginated.

PaginationProgress

Occurs when one or more content pages have been paginated.

Applies to