[]
Gets or sets whether indicating whether a document should use memory cache exclusively or be able to cache pages on disk.
[Browsable(false)]
public bool CacheToDisk { get; set; }
Type | Description |
---|---|
bool | A bool value. A |
If you are not experiencing issues, kindly do not modify this property. To prevent performance degradations, only make changes for really large documents in conjunction with CacheToDiskLocation.
var sectionDocument = new GrapeCity.ActiveReports.Document.SectionDocument();
sectionDocument.CacheToDisk = true;
sectionDocument.CacheToDiskLocation = System.IO.Path.GetTempPath();