Transliterator.Position Constructors
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
Transliterator.Position() |
Constructs a Position object with start, limit, contextStart, and contextLimit all equal to zero. |
Transliterator.Position(Transliterator+Position) | |
Transliterator.Position(IntPtr, JniHandleOwnership) | |
Transliterator.Position(Int32, Int32, Int32) |
Constructs a Position object with the given start, contextStart, and contextLimit. |
Transliterator.Position(Int32, Int32, Int32, Int32) |
Constructs a Position object with the given start, limit, contextStart, and contextLimit. |
Transliterator.Position()
Constructs a Position object with start, limit, contextStart, and contextLimit all equal to zero.
[Android.Runtime.Register(".ctor", "()V", "", ApiSince=29)]
public Position ();
- Attributes
Remarks
Constructs a Position object with start, limit, contextStart, and contextLimit all equal to zero.
Java documentation for android.icu.text.Transliterator.Position.Transliterator$Position()
.
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
Transliterator.Position(Transliterator+Position)
[Android.Runtime.Register(".ctor", "(Landroid/icu/text/Transliterator$Position;)V", "", ApiSince=29)]
public Position (Android.Icu.Text.Transliterator.Position? pos);
[<Android.Runtime.Register(".ctor", "(Landroid/icu/text/Transliterator$Position;)V", "", ApiSince=29)>]
new Android.Icu.Text.Transliterator.Position : Android.Icu.Text.Transliterator.Position -> Android.Icu.Text.Transliterator.Position
Parameters
- Attributes
Applies to
Transliterator.Position(IntPtr, JniHandleOwnership)
protected Position (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Icu.Text.Transliterator.Position : nativeint * Android.Runtime.JniHandleOwnership -> Android.Icu.Text.Transliterator.Position
Parameters
- javaReference
-
IntPtr
nativeint
- transfer
- JniHandleOwnership
Applies to
Transliterator.Position(Int32, Int32, Int32)
Constructs a Position object with the given start, contextStart, and contextLimit.
[Android.Runtime.Register(".ctor", "(III)V", "", ApiSince=29)]
public Position (int contextStart, int contextLimit, int start);
[<Android.Runtime.Register(".ctor", "(III)V", "", ApiSince=29)>]
new Android.Icu.Text.Transliterator.Position : int * int * int -> Android.Icu.Text.Transliterator.Position
Parameters
- contextStart
- Int32
- contextLimit
- Int32
- start
- Int32
- Attributes
Remarks
Constructs a Position object with the given start, contextStart, and contextLimit. The limit is set to the contextLimit.
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
Transliterator.Position(Int32, Int32, Int32, Int32)
Constructs a Position object with the given start, limit, contextStart, and contextLimit.
[Android.Runtime.Register(".ctor", "(IIII)V", "", ApiSince=29)]
public Position (int contextStart, int contextLimit, int start, int limit);
[<Android.Runtime.Register(".ctor", "(IIII)V", "", ApiSince=29)>]
new Android.Icu.Text.Transliterator.Position : int * int * int * int -> Android.Icu.Text.Transliterator.Position
Parameters
- contextStart
- Int32
- contextLimit
- Int32
- start
- Int32
- limit
- Int32
- Attributes
Remarks
Constructs a Position object with the given start, limit, contextStart, and contextLimit.
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.