declare class StringSelectMenuBuilder extends BaseSelectMenuBuilder<APIStringSelectComponent>
A builder that creates API-compatible JSON data for string select menus.
readonlyPartial<DataType> data :
The API data associated with this component.
Inherited from: ComponentBuilder
readonlyStringSelectMenuOptionBuilder[] options :
The options within this select menu.
setCustomIdcustomId: string) : this (
customId: string
Sets the custom id for this select menu.
Inherited from: BaseSelectMenuBuilder
setDisableddisabled?: boolean) : this (
disabled?: boolean
Sets whether this select menu is disabled.
Inherited from: BaseSelectMenuBuilder
setMaxValuesmaxValues: number) : this (
maxValues: number
Sets the maximum values that must be selected in the select menu.
Inherited from: BaseSelectMenuBuilder
setMinValuesminValues: number) : this (
minValues: number
Sets the minimum values that must be selected in the select menu.
Inherited from: BaseSelectMenuBuilder
setPlaceholderplaceholder: string) : this (
placeholder: string
Sets the placeholder for this select menu.
Inherited from: BaseSelectMenuBuilder
Removes, replaces, or inserts options for this select menu.
Examples:Remove the first option:Remove the first n option:Remove the last option:
selectMenu.spliceOptions(0, 1);
const n = 4;
selectMenu.spliceOptions(0, n);
selectMenu.spliceOptions(-1, 1);
toJSONAPIStringSelectComponent () :
Serializes this builder to API-compatible JSON data.