Class OdfExternalCellCacheInfo
- Namespace
- OdfKit.Spreadsheet
- Assembly
- OdfKit.dll
Describes a cached cell value for an external spreadsheet reference. 描述試算表外部參照的快取儲存格值。
public sealed class OdfExternalCellCacheInfo
- Inheritance
-
OdfExternalCellCacheInfo
- Inherited Members
Constructors
OdfExternalCellCacheInfo(string, string, OdfCellAddress, object?)
Initializes a new instance of the OdfExternalCellCacheInfo class. 初始化 OdfExternalCellCacheInfo 類別的新執行個體。
public OdfExternalCellCacheInfo(string documentId, string sheetName, OdfCellAddress address, object? value)
Parameters
documentIdstringThe external document identifier. / 外部文件識別碼。
sheetNamestringThe external worksheet name. / 外部工作表名稱。
addressOdfCellAddressThe external cell address. / 外部儲存格位址。
valueobjectThe cached value. / 快取值。
Properties
Address
Gets the external cell address. 取得外部儲存格位址。
public OdfCellAddress Address { get; }
Property Value
DocumentId
Gets the external document identifier. 取得外部文件識別碼。
public string DocumentId { get; }
Property Value
SheetName
Gets the external worksheet name. 取得外部工作表名稱。
public string SheetName { get; }
Property Value
Value
Gets the cached value. 取得快取值。
public object? Value { get; }