ReadingMode
Enum
Selects how page content is read during PDF import to balance memory usage and load time.
Definition
Namespace:Telerik.Windows.Documents.Fixed.FormatProviders
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
C#
public enum ReadingMode
Fields
Loads content for all pages during import to enable immediate access at the cost of memory.
C#
AllAtOnce = 0
Defers reading page content until requested, reducing upfront memory and improving initial load time.
C#
OnDemand = 1