setTextAndPlaceCursorAtEnd

Sets the text in this OudsPasswordInputState to text, replacing any text that was previously there, and places the cursor at the end of the new text.

To perform more complicated edits on the text, call OudsPasswordInputState.edit. This function is equivalent to calling:

edit {
replace(0, length, text)
placeCursorAtEnd()
}

See also