GuiTextInputBox abstract method

int GuiTextInputBox(
  1. RectangleD bounds,
  2. MemoryPointer<RInt8> title,
  3. MemoryPointer<RInt8> message,
  4. MemoryPointer<RInt8> text,
  5. int textSize,
  6. MemoryPointer<RInt8> btnText,
  7. MemoryPointer<RInt32> btnActive,
  8. MemoryPointer<RBool> secretViewActive,
)

Text Input Box control, ask for text, supports secret

Implementation

int GuiTextInputBox(
  RectangleD bounds,
  MemoryPointer<RChar> title,
  MemoryPointer<RChar> message,
  MemoryPointer<RChar> text,
  int textSize,
  MemoryPointer<RChar> btnText,
  MemoryPointer<RInt> btnActive,
  MemoryPointer<RBool> secretViewActive,
);