Class used to build select menu components to be sent through the API
Constructs a new instance of the
StringSelectMenuBuilder
className | Type | Optional | Description |
---|---|---|---|
data | Partial<StringSelectMenuComponentData | APIStringSelectComponent> | Yes | None |
The API data associated with this component.
Inherited from ComponentBuilderAdds options to this select menu
Name | Type | Optional | Description |
---|---|---|---|
...options | RestOrArray<BuildersSelectMenuOption | SelectMenuComponentOptionData | APISelectMenuOption> | No | The options to add to this select menu |
Creates a new select menu builder from json data
Name | Type | Optional | Description |
---|---|---|---|
other | JSONEncodable<APISelectMenuComponent> | APISelectMenuComponent | No | The other data |
Sets the custom id for this select menu.
Name | Type | Optional | Description |
---|---|---|---|
customId | string | No | The custom id to use |
Sets whether this select menu is disabled.
Name | Type | Optional | Description |
---|---|---|---|
disabled | boolean | Yes | Whether this select menu is disabled |
Sets the maximum values that must be selected in the select menu.
Name | Type | Optional | Description |
---|---|---|---|
maxValues | number | No | The maximum values that must be selected |
Sets the minimum values that must be selected in the select menu.
Name | Type | Optional | Description |
---|---|---|---|
minValues | number | No | The minimum values that must be selected |
Sets the options on this select menu
Name | Type | Optional | Description |
---|---|---|---|
...options | RestOrArray<BuildersSelectMenuOption | SelectMenuComponentOptionData | APISelectMenuOption> | No | The options to set on this select menu |
Sets the placeholder for this select menu.
Name | Type | Optional | Description |
---|---|---|---|
placeholder | string | No | The placeholder to use |
Removes, replaces, or inserts options for this select menu.
Remarks
This method behaves similarly to Array.prototype.splice(). It's useful for modifying and adjusting the order of existing options.Example
Remove the first option:Example
Remove the first n option:Example
Remove the last option:Name | Type | Optional | Description |
---|---|---|---|
index | number | No | The index to start at |
deleteCount | number | No | The number of options to remove |
...options | RestOrArray<APISelectMenuOption | StringSelectMenuOptionBuilder> | No | The replacing option objects or builders |
Serializes this builder to API-compatible JSON data.