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:1573

Properties

PropertyModifierType
dartpublicany

Accessors

column

get column(): Column<any>

Corresponding column.

Returns

Column<any>

Source

src/dataframe.ts:1597


dataFrame

get dataFrame(): DataFrame

Corresponding table.

Returns

DataFrame

Source

src/dataframe.ts:1579


row

get row(): Row

Corresponding row.

Returns

Row

Source

src/dataframe.ts:1585


rowIndex

get rowIndex(): number

Index of the corresponding row.

Returns

number

Source

src/dataframe.ts:1591


value

get value(): any

Cell value.

set value(x): void

Parameters

ParameterType
xany

Returns

any

Source

src/dataframe.ts:1603


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:1608

Methods

isNone()

isNone(): boolean

Whether the cell is empty

Returns

boolean

Source

src/dataframe.ts:1611


toString()

toString(): string

Returns

string

Source

src/dataframe.ts:1614