Skip to main content
All docs
V23.2

PrintingSettings.CacheImagesInDocumentStorage Property

Gets or sets whether to cache images in a document storage when a report document is generated.

Namespace: DevExpress.XtraPrinting.Native

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public static bool CacheImagesInDocumentStorage { get; set; }

Property Value

Type Description
Boolean

true (the default value), to cache images in a document storage when a report document is generated; otherwise, false.

Remarks

When you implement a document storage for reports, implement a separate storage for document images. As an alternative, you can disable the CacheImagesInDocumentStorage property and cache images in memory instead (performance and/or memory consumption may be affected).

See Also