目錄 / Table of Contents

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

documentId string

The external document identifier. / 外部文件識別碼。

sheetName string

The external worksheet name. / 外部工作表名稱。

address OdfCellAddress

The external cell address. / 外部儲存格位址。

value object

The cached value. / 快取值。

Properties

Address

Gets the external cell address. 取得外部儲存格位址。

public OdfCellAddress Address { get; }

Property Value

OdfCellAddress

DocumentId

Gets the external document identifier. 取得外部文件識別碼。

public string DocumentId { get; }

Property Value

string

SheetName

Gets the external worksheet name. 取得外部工作表名稱。

public string SheetName { get; }

Property Value

string

Value

Gets the cached value. 取得快取值。

public object? Value { get; }

Property Value

object