CursorAnchorInfo.Builder.SetComposingText Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| SetComposingText(Int32, ICharSequence) |
Sets the text range of the composing text. |
| SetComposingText(Int32, String) |
Sets the text range of the composing text. |
SetComposingText(Int32, ICharSequence)
Sets the text range of the composing text.
[Android.Runtime.Register("setComposingText", "(ILjava/lang/CharSequence;)Landroid/view/inputmethod/CursorAnchorInfo$Builder;", "")]
public Android.Views.InputMethods.CursorAnchorInfo.Builder? SetComposingText(int composingTextStart, Java.Lang.ICharSequence? composingText);
[<Android.Runtime.Register("setComposingText", "(ILjava/lang/CharSequence;)Landroid/view/inputmethod/CursorAnchorInfo$Builder;", "")>]
member this.SetComposingText : int * Java.Lang.ICharSequence -> Android.Views.InputMethods.CursorAnchorInfo.Builder
Parameters
- composingTextStart
- Int32
index where the composing text starts.
- composingText
- ICharSequence
the entire composing text.
Returns
- Attributes
Remarks
Sets the text range of the composing text. Calling this can be skipped if there is no composing text.
Android reference for android.view.inputmethod.CursorAnchorInfo.Builder.setComposingText.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
SetComposingText(Int32, String)
Sets the text range of the composing text.
public Android.Views.InputMethods.CursorAnchorInfo.Builder? SetComposingText(int composingTextStart, string? composingText);
member this.SetComposingText : int * string -> Android.Views.InputMethods.CursorAnchorInfo.Builder
Parameters
- composingTextStart
- Int32
index where the composing text starts.
- composingText
- String
the entire composing text.
Returns
Remarks
Sets the text range of the composing text. Calling this can be skipped if there is no composing text.
Android reference for android.view.inputmethod.CursorAnchorInfo.Builder.setComposingText.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.