GuiValueBox method

int GuiValueBox(
  1. RectangleC bounds,
  2. Pointer<Char> text,
  3. Pointer<Int> value,
  4. int minValue,
  5. int maxValue,
  6. bool editMode,
)

Value Box control, updates input text with numbers

Implementation

int GuiValueBox(RectangleC bounds, Pointer<Char> text, Pointer<Int> value, int minValue, int maxValue, bool editMode)
  => _GuiValueBox(bounds, text, value, minValue, maxValue, editMode);