MCPcopy Create free account
hub / github.com/esengine/esengine / removeChildAt

Method removeChildAt

packages/fairygui/src/widgets/GList.ts:251–257  ·  view source on GitHub ↗
(index: number, bDispose?: boolean)

Source from the content-addressed store, hash-verified

249 }
250
251 public removeChildAt(index: number, bDispose?: boolean): GObject {
252 const child = super.removeChildAt(index, bDispose);
253 if (!bDispose) {
254 child.off(FGUIEvents.CLICK, this._onClickItem, this);
255 }
256 return child;
257 }
258
259 public removeChildToPoolAt(index: number): void {
260 const child = super.removeChildAt(index);

Callers 2

removeChildFunction · 0.45
removeChildToPoolAtMethod · 0.45

Calls 1

offMethod · 0.45

Tested by

no test coverage detected