GuiMessageBox method
int
GuiMessageBox(
- RectangleD bounds,
- MemoryPointer<
RChar> title, - MemoryPointer<
RChar> message, - MemoryPointer<
RChar> btnText, - MemoryPointer<
RInt> btnActive,
override
Message Box control, displays a message
Implementation
@override
int GuiMessageBox(
RectangleD bounds,
MemoryPointer<RChar> title,
MemoryPointer<RChar> message,
MemoryPointer<RChar> btnText,
MemoryPointer<RInt> btnActive,
) => _wasm.GuiMessageBox(
$.Rectangle$.Ref1(bounds).toJS,
title.toJS,
message.toJS,
btnText.toJS,
btnActive.toJS,
);