AutoText.Get 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
Get(ICharSequence, Int32, Int32, View) |
Retrieves a possible spelling correction for the specified range of text. |
Get(String, Int32, Int32, View) |
Retrieves a possible spelling correction for the specified range of text. |
Get(ICharSequence, Int32, Int32, View)
Retrieves a possible spelling correction for the specified range of text.
[Android.Runtime.Register("get", "(Ljava/lang/CharSequence;IILandroid/view/View;)Ljava/lang/String;", "")]
public static string? Get (Java.Lang.ICharSequence? src, int start, int end, Android.Views.View? view);
[<Android.Runtime.Register("get", "(Ljava/lang/CharSequence;IILandroid/view/View;)Ljava/lang/String;", "")>]
static member Get : Java.Lang.ICharSequence * int * int * Android.Views.View -> string
Parameters
- src
- ICharSequence
- start
- Int32
- end
- Int32
- view
- View
Returns
- Attributes
Remarks
Retrieves a possible spelling correction for the specified range of text. Returns null if no correction can be found. The View is used to get the current Locale and Resources.
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
Get(String, Int32, Int32, View)
Retrieves a possible spelling correction for the specified range of text.
public static string? Get (string? src, int start, int end, Android.Views.View? view);
static member Get : string * int * int * Android.Views.View -> string
Parameters
- src
- String
- start
- Int32
- end
- Int32
- view
- View
Returns
Remarks
Retrieves a possible spelling correction for the specified range of text. Returns null if no correction can be found. The View is used to get the current Locale and Resources.
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.