Skip to main content

PdfDocumentLoadingPolicy Enum

Lists values that determine how PDF documents are loaded and processed for additional features such as text search, bookmarks, attachments etc.

Namespace: DevExpress.UI.Xaml.Controls

Assembly: DevExpress.UI.Xaml.Controls.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

[Flags]
public enum PdfDocumentLoadingPolicy

Members

Name Description
NativeOnly

The document is loaded on demand. Additional features are not available.

NativeOnlyInMemory

The document is fully loaded in memory. Additional features are not available.

OnDemand

The document is loaded on demand and processed for additional features as they are requested.

InMemory

The document is fully loaded in memory and immediately preprocessed for all additional features.

InMemoryOnDemand

The document is fully loaded in memory and processed for additional features as they are requested.

Related API Members

The following properties accept/return PdfDocumentLoadingPolicy values:

Remarks

Values listed by this enumeration are used to set the value of the PdfViewerControl.PdfDocumentLoadingPolicy property.

See Also