Winter Cardinal UI - v0.442.0 / DTableColumnImpl

Class: DTableColumnImpl<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>

Type parameters

Name Type
ROW_VALUE ROW_VALUE
CELL_VALUE CELL_VALUE
DIALOG_VALUE CELL_VALUE
DIALOG extends DTableColumnSelectingDialog<DIALOG_VALUE> = DTableColumnSelectingDialog<DIALOG_VALUE>

Hierarchy

Implements

Table of contents

Constructors

Properties

Accessors

Methods

Constructors

constructor

new DTableColumnImpl<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>(index, options): DTableColumnImpl<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>

Type parameters

Name Type
ROW_VALUE ROW_VALUE
CELL_VALUE CELL_VALUE
DIALOG_VALUE CELL_VALUE
DIALOG extends DTableColumnSelectingDialog<DIALOG_VALUE> = DTableColumnSelectingDialog<DIALOG_VALUE>

Parameters

Name Type
index number
options DTableColumnOptions<ROW_VALUE, CELL_VALUE, any, any>

Returns

DTableColumnImpl<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>

Overrides

utils.EventEmitter.constructor

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:395

Properties

_weight

Protected Optional _weight: number

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:364


_width

Protected Optional _width: number

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:366


align

Readonly align: DAlignHorizontal

Implementation of

DTableColumn.align

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:375


body

Optional Readonly body: DTableBodyCellOptions<ROW_VALUE>

Implementation of

DTableColumn.body

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:383


category

Optional Readonly category: string | string[]

Implementation of

DTableColumn.category

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:387


editing

Readonly editing: DTableColumnEditing<ROW_VALUE, CELL_VALUE>

Implementation of

DTableColumn.editing

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:379


formatter

Optional Readonly formatter: DTableColumnFormatter<CELL_VALUE>

Implementation of

DTableColumn.formatter

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:374


frozen

Optional Readonly frozen: boolean

Implementation of

DTableColumn.frozen

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:388


getter

Readonly getter: DTableColumnGetter<ROW_VALUE, CELL_VALUE>

Implementation of

DTableColumn.getter

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:372


Optional Readonly header: DTableHeaderCellOptions<ROW_VALUE, DThemeTableHeaderCell>

Implementation of

DTableColumn.header

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:382


label

Readonly label: string

Implementation of

DTableColumn.label

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:371


Optional Readonly link: DTableBodyCellLinkLinkOptions<ROW_VALUE, CELL_VALUE>

Implementation of

DTableColumn.link

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:391


minWeight

Readonly minWeight: number

Implementation of

DTableColumn.minWeight

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:365


minWidth

Readonly minWidth: number

Implementation of

DTableColumn.minWidth

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:367


offset

offset: number

Implementation of

DTableColumn.offset

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:389


renderable

Readonly renderable: boolean | DTableColumnRenderable<ROW_VALUE>

Implementation of

DTableColumn.renderable

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:377


resizable

Readonly resizable: boolean

Implementation of

DTableColumn.resizable

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:368


selecting

Readonly selecting: DTableColumnSelecting<CELL_VALUE, DIALOG_VALUE, DIALOG>

Implementation of

DTableColumn.selecting

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:385


setter

Readonly setter: DTableColumnSetter<ROW_VALUE, CELL_VALUE>

Implementation of

DTableColumn.setter

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:373


sorting

Readonly sorting: DTableColumnSorting<ROW_VALUE>

Implementation of

DTableColumn.sorting

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:380


state

Readonly state: DTableColumnState<ROW_VALUE>

Implementation of

DTableColumn.state

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:376


type

Readonly type: DTableColumnType

Implementation of

DTableColumn.type

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:370


update

Readonly update: DTableColumnUpdate

Implementation of

DTableColumn.update

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:393

Accessors

weight

get weight(): undefined | number

Returns

undefined | number

Implementation of

DTableColumn.weight

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:444

set weight(weight): void

Parameters

Name Type
weight number

Returns

void

Implementation of

DTableColumn.weight

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:448


width

get width(): undefined | number

Returns

undefined | number

Implementation of

DTableColumn.width

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:455

set width(width): void

Parameters

Name Type
width number

Returns

void

Implementation of

DTableColumn.width

Defined in

src/main/typescript/wcardinal/ui/d-table-column-impl.ts:459

Methods

addListener

addListener(event, fn, context?): this

Alias method for on

Parameters

Name Type
event string | symbol
fn Function
context? any

Returns

this

Implementation of

DTableColumn.addListener

Inherited from

utils.EventEmitter.addListener

Defined in

node_modules/pixi.js/pixi.js.d.ts:25495


emit

emit(event, ...args): boolean

Calls each of the listeners registered for a given event.

Parameters

Name Type Description
event string | symbol The event name.
...args any[] Arguments that are passed to registered listeners

Returns

boolean

true if the event had listeners, else false.

Implementation of

DTableColumn.emit

Inherited from

utils.EventEmitter.emit

Defined in

node_modules/pixi.js/pixi.js.d.ts:25441


eventNames

eventNames(): (string | symbol)[]

Return an array listing the events for which the emitter has registered listeners.

Returns

(string | symbol)[]

Implementation of

DTableColumn.eventNames

Inherited from

utils.EventEmitter.eventNames

Defined in

node_modules/pixi.js/pixi.js.d.ts:25415


listenerCount

listenerCount(event): number

Return the number of listeners listening to a given event.

Parameters

Name Type Description
event string | symbol The event name.

Returns

number

Implementation of

DTableColumn.listenerCount

Inherited from

utils.EventEmitter.listenerCount

Defined in

node_modules/pixi.js/pixi.js.d.ts:25432


listeners

listeners(event): Function[]

Return the listeners registered for a given event.

Parameters

Name Type Description
event string | symbol The event name.

Returns

Function[]

Implementation of

DTableColumn.listeners

Inherited from

utils.EventEmitter.listeners

Defined in

node_modules/pixi.js/pixi.js.d.ts:25424


off

off(event, fn?, context?, once?): this

Alias method for removeListener

Parameters

Name Type
event string | symbol
fn? Function
context? any
once? boolean

Returns

this

Implementation of

DTableColumn.off

Inherited from

utils.EventEmitter.off

Defined in

node_modules/pixi.js/pixi.js.d.ts:25489


on

on(event, fn, context?): this

Add a listener for a given event.

Parameters

Name Type Description
event string | symbol The event name.
fn Function The listener function.
context? any The context to invoke the listener with.

Returns

this

this.

Implementation of

DTableColumn.on

Inherited from

utils.EventEmitter.on

Defined in

node_modules/pixi.js/pixi.js.d.ts:25452


once

once(event, fn, context?): this

Add a one-time listener for a given event.

Parameters

Name Type Description
event string | symbol The event name.
fn Function The listener function.
context? any The context to invoke the listener with.

Returns

this

this.

Implementation of

DTableColumn.once

Inherited from

utils.EventEmitter.once

Defined in

node_modules/pixi.js/pixi.js.d.ts:25463


removeAllListeners

removeAllListeners(event?): this

Remove all listeners, or those of the specified event.

Parameters

Name Type Description
event? string | symbol The event name.

Returns

this

this.

Implementation of

DTableColumn.removeAllListeners

Inherited from

utils.EventEmitter.removeAllListeners

Defined in

node_modules/pixi.js/pixi.js.d.ts:25483


removeListener

removeListener(event, fn?, context?, once?): this

Remove the listeners of a given event.

Parameters

Name Type Description
event string | symbol The event name.
fn? Function Only remove the listeners that match this function.
context? any Only remove the listeners that have this context.
once? boolean Only remove one-time listeners.

Returns

this

this.

Implementation of

DTableColumn.removeListener

Inherited from

utils.EventEmitter.removeListener

Defined in

node_modules/pixi.js/pixi.js.d.ts:25475