Interface TextDialogInput.MultilineOptions
- Enclosing interface:
TextDialogInput
Represents the multiline options for a text dialog input.
-
Method Details
-
create
static TextDialogInput.MultilineOptions create(@Range(from=1L,to=2147483647L) @Nullable Integer maxLines, @Range(from=1L,to=512L) @Nullable Integer height) Creates a new multiline options instance.- Parameters:
maxLines
- the maximum number of lines, or null if not setheight
- the height of the input, or null if not set- Returns:
- a new MultilineOptions instance
-
maxLines
Gets the maximum number of lines.- Returns:
- the maximum number of lines, or null if not set
-
height
Gets the height of the input.- Returns:
- the height of the input, or null if not set
-