←Select platform

AutoSaveToCache Property

Summary

Indicates whether to automatically save the document to the cache before it is disposed.

Syntax
C#
C++/CLI
Java
Python
public bool AutoSaveToCache {get; set;} 
public:  
   property bool AutoSaveToCache 
   { 
      bool get() 
      void set(bool value) 
   } 
public boolean getAutoSaveToCache() 
public void setAutoSaveToCache(boolean value) 
AutoSaveToCache # get and set (LEADDocument) 

Property Value

true to automatically save the document to the cache before it is disposed; otherwise, false. Default value is false.

Remarks

Documents can contain large number of pages and huge amount of data. Storing all this data in the physical memory is not feasible in most situations. Therefore, the LEADDocument class was designed to use an external caching system to store the modified. Refer to DocumentFactory.Cache for more information.

HasCache determines if this document is using the cache system. SaveToCache can be used to save a document to the cache and re-load it by calling DocumentFactory.LoadFromCache.

Set AutoDeleteFromCache to true if your application uses cache to speed up processing the document, and the object will not be used after it is disposed.

Set AutoDeleteFromCache to false if your application will save the document ID before disposing the document, and use it to re-load the document by calling DocumentFactory.LoadFromCache.

To save the document to the cache, use SaveToCache, or set the value of AutoSaveToCache to true before disposing the document.

Note that setting this property to a value will update the same value in each child document.

Requirements

Target Platforms

Help Version 22.0.2023.4.21
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Document Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.