GuiScrollPanel method
int
GuiScrollPanel(
- RectangleD bounds,
- String? text,
- RectangleD content,
- Vector2D scroll, [
- RectangleD? view,
Implementation
int GuiScrollPanel(
RectangleD bounds,
String? text,
RectangleD content,
Vector2D scroll,
[RectangleD? view]
) => run(
() => 'GuiScrollPanel($bounds, $text, $content, $scroll, $view)',
() => _refUpdateVector2(scroll,
(ps) => _refUpdateRectangle(view,
(pv) => rl.Gui.GuiScrollPanel(
_refRectangle2(bounds).ref,
refStr(text),
_refRectangle3(content).ref,
ps,
pv,
),
),
),
);