Winter Cardinal UI - v0.442.0 / DTableColumnContainerImpl
Name | Type |
---|---|
ROW_VALUE |
ROW_VALUE |
CELL_VALUE |
unknown |
DIALOG_VALUE |
CELL_VALUE |
DIALOG |
extends DTableColumnSelectingDialog <DIALOG_VALUE > = DTableColumnSelectingDialog <DIALOG_VALUE > |
EventEmitter
↳ DTableColumnContainerImpl
DTableColumnContainer
<ROW_VALUE
, CELL_VALUE
, DIALOG_VALUE
, DIALOG
>• new DTableColumnContainerImpl<ROW_VALUE
, CELL_VALUE
, DIALOG_VALUE
, DIALOG
>(parent
, options?
): DTableColumnContainerImpl
<ROW_VALUE
, CELL_VALUE
, DIALOG_VALUE
, DIALOG
>
Name | Type |
---|---|
ROW_VALUE |
ROW_VALUE |
CELL_VALUE |
unknown |
DIALOG_VALUE |
CELL_VALUE |
DIALOG |
extends DTableColumnSelectingDialog <DIALOG_VALUE > = DTableColumnSelectingDialog <DIALOG_VALUE > |
Name | Type |
---|---|
parent |
DTableColumnContainerImplParent |
options? |
DTableColumnOptions <ROW_VALUE , CELL_VALUE , DIALOG_VALUE , DIALOG >[] |
DTableColumnContainerImpl
<ROW_VALUE
, CELL_VALUE
, DIALOG_VALUE
, DIALOG
>
utils.EventEmitter.constructor
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:28
• Readonly
frozen: number
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:25
• Readonly
items: DTableColumn
<ROW_VALUE
, CELL_VALUE
, DIALOG_VALUE
, DIALOG
>[]
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:26
• Readonly
parent: DTableColumnContainerImplParent
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:24
• get
width(): number
number
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:136
▸ addListener(event
, fn
, context?
): this
Alias method for on
Name | Type |
---|---|
event |
string | symbol |
fn |
Function |
context? |
any |
this
DTableColumnContainer.addListener
utils.EventEmitter.addListener
node_modules/pixi.js/pixi.js.d.ts:25495
▸ each(iteratee
): this
Name | Type |
---|---|
iteratee |
DTableColumnIteratee <ROW_VALUE , CELL_VALUE , DIALOG_VALUE , DIALOG > |
this
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:158
▸ emit(event
, ...args
): boolean
Calls each of the listeners registered for a given event.
Name | Type | Description |
---|---|---|
event |
string | symbol |
The event name. |
...args |
any [] |
Arguments that are passed to registered listeners |
boolean
true
if the event had listeners, else false
.
utils.EventEmitter.emit
node_modules/pixi.js/pixi.js.d.ts:25441
▸ eventNames(): (string
| symbol
)[]
Return an array listing the events for which the emitter has registered listeners.
(string
| symbol
)[]
DTableColumnContainer.eventNames
utils.EventEmitter.eventNames
node_modules/pixi.js/pixi.js.d.ts:25415
▸ get(index
): null
| DTableColumn
<ROW_VALUE
, CELL_VALUE
, DIALOG_VALUE
, DIALOG
>
Name | Type |
---|---|
index |
number |
null
| DTableColumn
<ROW_VALUE
, CELL_VALUE
, DIALOG_VALUE
, DIALOG
>
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:150
▸ listenerCount(event
): number
Return the number of listeners listening to a given event.
Name | Type | Description |
---|---|---|
event |
string | symbol |
The event name. |
number
DTableColumnContainer.listenerCount
utils.EventEmitter.listenerCount
node_modules/pixi.js/pixi.js.d.ts:25432
▸ listeners(event
): Function
[]
Return the listeners registered for a given event.
Name | Type | Description |
---|---|---|
event |
string | symbol |
The event name. |
Function
[]
DTableColumnContainer.listeners
utils.EventEmitter.listeners
node_modules/pixi.js/pixi.js.d.ts:25424
▸ newOnColumnResize(index
, column
): () => void
Name | Type |
---|---|
index |
number |
column |
DTableColumn <ROW_VALUE , CELL_VALUE , DIALOG_VALUE , DIALOG > |
fn
▸ (): void
void
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:59
▸ off(event
, fn?
, context?
, once?
): this
Alias method for removeListener
Name | Type |
---|---|
event |
string | symbol |
fn? |
Function |
context? |
any |
once? |
boolean |
this
utils.EventEmitter.off
node_modules/pixi.js/pixi.js.d.ts:25489
▸ on(event
, fn
, context?
): this
Add a listener for a given event.
Name | Type | Description |
---|---|---|
event |
string | symbol |
The event name. |
fn |
Function |
The listener function. |
context? |
any |
The context to invoke the listener with. |
this
this
.
utils.EventEmitter.on
node_modules/pixi.js/pixi.js.d.ts:25452
▸ onColumnResize(index
, column
): void
Name | Type |
---|---|
index |
number |
column |
DTableColumn <ROW_VALUE , CELL_VALUE , DIALOG_VALUE , DIALOG > |
void
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:68
▸ onColumnResizeBody(index
, column
): void
Name | Type |
---|---|
index |
number |
column |
DTableColumn <ROW_VALUE , CELL_VALUE , DIALOG_VALUE , DIALOG > |
void
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:95
▸ onColumnResizeHeader(index
, column
): void
Name | Type |
---|---|
index |
number |
column |
DTableColumn <ROW_VALUE , CELL_VALUE , DIALOG_VALUE , DIALOG > |
void
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:77
▸ onColumnResizeWeight(row
, index
, columnWeight
): void
Name | Type |
---|---|
row |
DBase <DThemeBase , DBaseOptions <DThemeBase , any >> |
index |
number |
columnWeight |
number |
void
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:118
▸ onColumnResizeWidth(row
, index
, columnWidth
): void
Name | Type |
---|---|
row |
DBase <DThemeBase , DBaseOptions <DThemeBase , any >> |
index |
number |
columnWidth |
number |
void
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:127
▸ once(event
, fn
, context?
): this
Add a one-time listener for a given event.
Name | Type | Description |
---|---|---|
event |
string | symbol |
The event name. |
fn |
Function |
The listener function. |
context? |
any |
The context to invoke the listener with. |
this
this
.
utils.EventEmitter.once
node_modules/pixi.js/pixi.js.d.ts:25463
▸ removeAllListeners(event?
): this
Remove all listeners, or those of the specified event.
Name | Type | Description |
---|---|---|
event? |
string | symbol |
The event name. |
this
this
.
DTableColumnContainer.removeAllListeners
utils.EventEmitter.removeAllListeners
node_modules/pixi.js/pixi.js.d.ts:25483
▸ removeListener(event
, fn?
, context?
, once?
): this
Remove the listeners of a given event.
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. |
this
this
.
DTableColumnContainer.removeListener
utils.EventEmitter.removeListener
node_modules/pixi.js/pixi.js.d.ts:25475
▸ size(): number
number
src/main/typescript/wcardinal/ui/d-table-column-container-impl.ts:168