Table of Contents

Class OdfFormulaCellInfo

Namespace
OdfKit.Spreadsheet
Assembly
OdfKit.dll

Represents a spreadsheet cell that contains a formula. 表示試算表中一個含公式的儲存格。

public sealed class OdfFormulaCellInfo
Inheritance
OdfFormulaCellInfo
Inherited Members

Constructors

OdfFormulaCellInfo(string, OdfCellAddress, OdfCell, string)

Represents a spreadsheet cell that contains a formula. 表示試算表中一個含公式的儲存格。

public OdfFormulaCellInfo(string sheetName, OdfCellAddress address, OdfCell cell, string formula)

Parameters

sheetName string

The sheet name. / 工作表名稱。

address OdfCellAddress

The cell address. / 儲存格位址。

cell OdfCell

The cell facade. / 儲存格 facade。

formula string

The current table:formula text. / 目前的 table:formula 文字。

Properties

Address

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

public OdfCellAddress Address { get; }

Property Value

OdfCellAddress

Cell

Gets the cell facade. 取得儲存格 facade。

public OdfCell Cell { get; }

Property Value

OdfCell

ExcelAddress

Gets the Excel-style address with the sheet name. 取得含工作表名稱的 Excel 樣式位址。

public string ExcelAddress { get; }

Property Value

string

Formula

Gets the current table:formula text. 取得目前的 table:formula 文字。

public string Formula { get; }

Property Value

string

SheetName

Gets the sheet name. 取得工作表名稱。

public string SheetName { get; }

Property Value

string