DiscordLua
discorddiscord
v1.2.4
Install

ForumLayoutType

Enum
On this page

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

Values

discord.ForumLayoutType.NotSet
0
Not Set. Use the symbolic name in bot code rather than the raw value.
discord.ForumLayoutType.ListView
1
List View. Use the symbolic name in bot code rather than the raw value.
discord.ForumLayoutType.GalleryView
2
Gallery View. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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