LimitedTextInputProperties
export type LimitedTextInputProperties = TextInputProperties & {
GraphemeLimit: CanBeState<number>,
TextLimit: CanBeState<number>,
}
The LimitedTextInputProperties
table that is given to the LimitedTextInput()
function that contains data about the desired LimitedTextInput
.
This type is also an extension of the TextInputProperties
type.
Properties
GraphemeLimit : CanBeState<number>
Sets the grapheme limit for the LimitedTextInput
. Can either be a State
containing a number
, or a number
.
TextLimit : CanBeState<number>
Sets the text limit for the LimitedTextInput
. Can either be a State
containing a number
, or a number
.