PDFView4NET WinForms Edition


CacheRenderedPages Property
Gets or sets a value indicating whether the rendered pages should be cached.
Syntax
'Declaration
 
<CategoryAttribute("PDF")>
<DescriptionAttribute("Enables the cache of rendered pages.")>
<DefaultValueAttribute(True)>
Public Property CacheRenderedPages As Boolean
'Usage
 
Dim instance As PDFPageView
Dim value As Boolean
 
instance.CacheRenderedPages = value
 
value = instance.CacheRenderedPages
[Category("PDF")]
[Description("Enables the cache of rendered pages.")]
[DefaultValue(true)]
public bool CacheRenderedPages {get; set;}

Property Value

True if the rendered pages should be cached, false otherwise. Default is true.
Remarks
Caching of rendered pages improves the display speed when the page is displayed again but this also increases memory consumption, depending on how complex the page content is.
Requirements

Target Platforms: Windows 7, Windows 10, Windows 11, Windows Server 2022, Windows Server 2025

See Also