GuiTextInputBox method
int
GuiTextInputBox(
- RectangleD bounds,
- MemoryPointer<
RChar> title, - MemoryPointer<
RChar> message, - MemoryPointer<
RChar> text, - int textSize,
- MemoryPointer<
RChar> btnText, - MemoryPointer<
RInt> btnActive, - MemoryPointer<
RBool> secretViewActive,
override
Text Input Box control, ask for text, supports secret
Implementation
@override
int GuiTextInputBox(
RectangleD bounds,
MemoryPointer<RChar> title,
MemoryPointer<RChar> message,
MemoryPointer<RChar> text,
int textSize,
MemoryPointer<RChar> btnText,
MemoryPointer<RInt> btnActive,
MemoryPointer<RBool> secretViewActive,
) => _wasm.GuiTextInputBox(
$.Rectangle$.Ref1(bounds).toJS,
title.toJS,
message.toJS,
text.toJS,
textSize.toJS,
btnText.toJS,
btnActive.toJS,
secretViewActive.toJS,
);