GuiValueBoxFloat method
(int, double)
GuiValueBoxFloat(
- RectangleD bounds,
- String? text,
- String textValue,
- num value,
- bool editMode,
Implementation
(int result, double value) GuiValueBoxFloat(
RectangleD bounds,
String? text,
String textValue,
num value,
bool editMode,
) => run(
() => 'GuiValueBoxFloat($bounds, $text, $textValue, $value, $editMode)',
() {
final valuePtr = refFloat1(value.toDouble());
final result = rl.Gui.GuiValueBoxFloat(
_refRectangle1(bounds).ref,
refStr(text),
refStr(textValue),
valuePtr,
editMode,
);
return (result, valuePtr.value);
},
);