GuiScrollPanel method
int
GuiScrollPanel(
- RectangleD bounds,
- String? text,
- RectangleD content,
- Vector2D scroll, [
- RectangleD? view,
override
Implementation
@override
int GuiScrollPanel(
RectangleD bounds,
String? text,
RectangleD content,
Vector2D scroll,
[RectangleD? view]
) => run(
() => RaylibDebugLabels.GuiScrollPanel(bounds, text, content, scroll, view),
() => rl.Temp.Vector2$.RefUpdate1(scroll,
(ps) => rl.Temp.Rectangle$.RefUpdate1(view,
(pv) => rl.Gui.GuiScrollPanel.run5(
rl.Temp.Rectangle$.Ref2(bounds).toJS,
text?.toJS,
rl.Temp.Rectangle$.Ref3(content).toJS,
ps.toJS,
pv.toJS,
).toInt(),
),
),
);