Skip to main content

Cell

Represents a table cell.

Constructors

new Cell()

new Cell(dart): Cell

Parameters

ParameterType
dartany

Returns

Cell

Source

src/dataframe.ts:1703

Properties

PropertyModifierType
dartpublicany

Accessors

column

get column(): Column<any, any>

Corresponding column.

Returns

Column<any, any>

Source

src/dataframe.ts:1727


dataFrame

get dataFrame(): DataFrame

Corresponding table.

Returns

DataFrame

Source

src/dataframe.ts:1709


row

get row(): Row

Corresponding row.

Returns

Row

Source

src/dataframe.ts:1715


rowIndex

get rowIndex(): number

Index of the corresponding row.

Returns

number

Source

src/dataframe.ts:1721


value

get value(): any

Cell value.

set value(x): void

Parameters

ParameterType
xany

Returns

any

Source

src/dataframe.ts:1733


valueString

get valueString(): string

String representation of the value, if both [column] and [row] are defined; otherwise, empty string.

Returns

string

Source

src/dataframe.ts:1738

Methods

isNone()

isNone(): boolean

Whether the cell is empty

Returns

boolean

Source

src/dataframe.ts:1741


toString()

toString(): string

Returns

string

Source

src/dataframe.ts:1744