FieldPosition 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
FieldPosition(_Format+Field) |
Creates a FieldPosition object for the given field. |
FieldPosition(Int32) |
Creates a FieldPosition object for the given field. |
FieldPosition(_Format+Field, Int32) |
Creates a FieldPosition object for the given field. |
FieldPosition(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
FieldPosition(_Format+Field)
Creates a FieldPosition object for the given field.
[Android.Runtime.Register(".ctor", "(Ljava/text/Format$Field;)V", "")]
public FieldPosition (Java.Text._Format.Field? attribute);
[<Android.Runtime.Register(".ctor", "(Ljava/text/Format$Field;)V", "")>]
new Java.Text.FieldPosition : Java.Text._Format.Field -> Java.Text.FieldPosition
Parameters
- attribute
- _Format.Field
- Attributes
Remarks
Java documentation for java.text.FieldPosition.FieldPosition(int)
.
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
FieldPosition(Int32)
Creates a FieldPosition object for the given field.
[Android.Runtime.Register(".ctor", "(I)V", "")]
public FieldPosition (int field);
[<Android.Runtime.Register(".ctor", "(I)V", "")>]
new Java.Text.FieldPosition : int -> Java.Text.FieldPosition
Parameters
- field
- Int32
the field identifier
- Attributes
Remarks
Creates a FieldPosition object for the given field. Fields are identified by constants, whose names typically end with _FIELD, in the various subclasses of Format.
Java documentation for java.text.FieldPosition.FieldPosition(.*int)
.
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
FieldPosition(_Format+Field, Int32)
Creates a FieldPosition object for the given field.
[Android.Runtime.Register(".ctor", "(Ljava/text/Format$Field;I)V", "")]
public FieldPosition (Java.Text._Format.Field? attribute, int fieldID);
[<Android.Runtime.Register(".ctor", "(Ljava/text/Format$Field;I)V", "")>]
new Java.Text.FieldPosition : Java.Text._Format.Field * int -> Java.Text.FieldPosition
Parameters
- attribute
- _Format.Field
- fieldID
- Int32
- Attributes
Remarks
Java documentation for java.text.FieldPosition.FieldPosition(int)
.
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
FieldPosition(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected FieldPosition (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Text.FieldPosition : nativeint * Android.Runtime.JniHandleOwnership -> Java.Text.FieldPosition
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
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.