:InputTextMultiline

type InputTextMultiline = {
Value: string,
Placeholder: string?,
Disabled: boolean?,
--// Functions
Callback: ((string, ...any) -> unknown)?,
Clear: (InputText) -> InputText,
SetValue: (InputText, Value: string) -> InputText,
SetDisabled: (InputText, Disabled: boolean) -> InputText,
}
Example usage:
:InputTextMultiline({
Value = "Hello world!"
})
Theme colors:
Tag
Affects
FrameBg
TextBox background color
FrameBgTransparency
TextBox background transparency
Text
Text color
TextFont
Text fontface
TextSize
Text font ssize
Last updated