GuiValueBoxFloat method

  1. @override
int GuiValueBoxFloat(
  1. RectangleD bounds,
  2. MemoryPointer<RChar> text,
  3. MemoryPointer<RChar> textValue,
  4. MemoryPointer<RFloat> value,
  5. bool editMode,
)
override

Value box control for float values

Implementation

@override
int GuiValueBoxFloat(
  RectangleD bounds,
  MemoryPointer<RChar> text,
  MemoryPointer<RChar> textValue,
  MemoryPointer<RFloat> value,
  bool editMode,
) => _wasm.GuiValueBoxFloat(
  $.Rectangle$.Ref1(bounds).toJS,
  text.toJS,
  textValue.toJS,
  value.toJS,
  editMode.toJS,
);