Determines which extra parts of the document will be stored in the cache.
[SerializableAttribute()]
[FlagsAttribute()]
[DataContractAttribute()]
public enum DocumentCacheOptions
<SerializableAttribute(),
DataContractAttribute(),
FlagsAttribute()>
Public Enum DocumentCacheOptions
public:
[SerializableAttribute,
DataContractAttribute,
FlagsAttribute]
enum class DocumentCacheOptions sealed
Value | Member | Description |
---|---|---|
0x00000000 | None | No extra parts of the document is cached. Only what is needed to re-construct the documents and its pages from the cache. |
0x00000001 | PageImage | Calls to DocumentPage.GetImage will try to save the result in the cache and re-used in subsequent calls. |
0x00000002 | PageSvg | Calls to DocumentPage.GetSvg will try to save the result in the cache and re-used in subsequent calls. |
0x00000004 | PageSvgBackImage | Calls to DocumentPage.GetSvgBackImage will try to save the result in the cache and re-used in subsequent calls. |
0x00000008 | PageThumbnailImage | Calls to DocumentPage.GetThumbnailImage will try to save the result in the cache and re-used in subsequent calls. |
0x00000010 | PageText | Calls to DocumentPage.GetText will try to save the result in the cache and re-used in subsequent calls. |
0x00000020 | PageAnnotations | Calls to DocumentPage.GetAnnotations will try to save the result in the cache and re-used in subsequent calls. |
0x0000003F | All | All results are cached and re-used in subsequent calls. |
DocumentCacheOptions is used as the type of LoadDocumentOptions.CacheOptions and LEADDocument.CacheOptions to determine which extra parts of the document is in stored cached.
The value of DocumentCacheOptions.None (the default) means to store only the necessary data needed to re-construct the document and its pages from the cache (for example, when DocumentFactory.LoadFromCache is called.
Other values will try to store the results of getting the page images, SVGs, text, and annotations into the cache to speed up subsequent calls.
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document