Winter Cardinal UI - v0.442.0 / DTableCategoryColumnImpl

Class: DTableCategoryColumnImpl<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 DTableCategoryColumnImpl<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>(index, column): DTableCategoryColumnImpl<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
column DTableColumn<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>

Returns

DTableCategoryColumnImpl<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>

Overrides

utils.EventEmitter.constructor

Defined in

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

Properties

_columns

Protected _columns: DTableColumn<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>[]

Defined in

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


_isLocked

Protected _isLocked: boolean

Defined in

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


_onResizeBound

Protected _onResizeBound: (column: DTableColumn<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>) => void

Type declaration

▸ (column): void

Parameters
Name Type
column DTableColumn<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>
Returns

void

Defined in

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


_weight

Protected _weight: undefined | number

Defined in

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


_width

Protected _width: undefined | number

Defined in

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


label

label: undefined | string

Implementation of

DTableCategoryColumn.label

Defined in

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


offset

offset: number

Implementation of

DTableCategoryColumn.offset

Defined in

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


resizable

Readonly resizable: boolean

Implementation of

DTableCategoryColumn.resizable

Defined in

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

Accessors

minWeight

get minWeight(): number

Returns

number

Implementation of

DTableCategoryColumn.minWeight

Defined in

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


minWidth

get minWidth(): number

Returns

number

Implementation of

DTableCategoryColumn.minWidth

Defined in

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


weight

get weight(): undefined | number

Returns

undefined | number

Implementation of

DTableCategoryColumn.weight

Defined in

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

set weight(weight): void

Parameters

Name Type
weight number

Returns

void

Implementation of

DTableCategoryColumn.weight

Defined in

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


width

get width(): undefined | number

Returns

undefined | number

Implementation of

DTableCategoryColumn.width

Defined in

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

set width(width): void

Parameters

Name Type
width number

Returns

void

Implementation of

DTableCategoryColumn.width

Defined in

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

Methods

add

add(column): void

Parameters

Name Type
column DTableColumn<ROW_VALUE, CELL_VALUE, DIALOG_VALUE, DIALOG>

Returns

void

Defined in

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


addListener

addListener(event, fn, context?): this

Alias method for on

Parameters

Name Type
event string | symbol
fn Function
context? any

Returns

this

Implementation of

DTableCategoryColumn.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

DTableCategoryColumn.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

DTableCategoryColumn.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

DTableCategoryColumn.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

DTableCategoryColumn.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

DTableCategoryColumn.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

DTableCategoryColumn.on

Inherited from

utils.EventEmitter.on

Defined in

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


onResize

onResize(): void

Returns

void

Defined in

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


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

DTableCategoryColumn.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

DTableCategoryColumn.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

DTableCategoryColumn.removeListener

Inherited from

utils.EventEmitter.removeListener

Defined in

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