GuiLabelButton abstract method

int GuiLabelButton(
  1. RectangleStructType bounds,
  2. String? text
)

Label button control, returns true when clicked

Returns int rather than bool to match Raygui's uniform result convention across all controls.

Use GuiLabelButton(...) == 1 to test for a click.

Implementation

int GuiLabelButton(
  RectangleStructType bounds,
  String? text,
);