GuiGroupBox method

GuiResult GuiGroupBox(
  1. RectangleD bounds,
  2. String? text
)

Group Box control with text name

Implementation

GuiResult GuiGroupBox(
  RectangleD bounds,
  String? text,
) => run(
  () => _debugLabels.GuiGroupBox(bounds, text),
  () => .fromValue(_flat.GuiGroupBox(
    bounds,
    $.String$.ValueOrNull(text),
  )),
);