DiscordLua
discorddiscord
v1.2.4
Install

TextInputStyle

Enum
On this page

discord.TextInputStyle lists the named constants for this enumeration. Prefer these names over hardcoded literals.

Values

discord.TextInputStyle.Short
1
Short. Use the symbolic name in bot code rather than the raw value.
discord.TextInputStyle.Paragraph
2
Paragraph. Use the symbolic name in bot code rather than the raw value.

Usage

Read members as discord.TextInputStyle.Name. Do not hard-code numeric literals when a symbolic name exists.

Example

lua
local discord = require("discord")
print(discord.TextInputStyle.Short)
Search Ctrl K Navigate Open Esc