GuiComboBox method

  1. @override
int GuiComboBox(
  1. RectangleD bounds,
  2. MemoryPointer<RChar> text,
  3. MemoryPointer<RInt> active
)
override

Combo Box control

Implementation

@override
int GuiComboBox(
  RectangleD bounds,
  MemoryPointer<RChar> text,
  MemoryPointer<RInt> active,
) => _wasm.GuiComboBox(
  $.Rectangle$.Ref1(bounds).toJS,
  text.toJS,
  active.toJS,
);