WorkbookStartAccessCache Method |
Starts the session that uses caches to access data.
Namespace:
Aspose.Cells
Assembly:
Aspose.Cells (in Aspose.Cells.dll) Version: 22.5.0.0 (22.5.0)
Syntaxpublic void StartAccessCache(
AccessCacheOptions opts
)
Public Sub StartAccessCache (
opts As AccessCacheOptions
)
public:
void StartAccessCache(
AccessCacheOptions opts
)
member StartAccessCache :
opts : AccessCacheOptions -> unit
Parameters
- opts
- Type: Aspose.CellsAccessCacheOptions
options of data access
RemarksIf the cache of specified data access requires some data models in worksheet to be "read-only",
then corresponding data models in every worksheet in this workbook will be taken as "read-only"
and user should not change any of them.
After finishing the access to the data,
CloseAccessCache(AccessCacheOptions) should
be invoked with same options to clear all caches and recover normal access mode.
See Also