MeasuredText.Builder 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
MeasuredText.Builder(MeasuredText) |
Construct a builder with existing MeasuredText. |
MeasuredText.Builder(Char[]) |
Construct a builder. |
MeasuredText.Builder(MeasuredText)
Construct a builder with existing MeasuredText.
[Android.Runtime.Register(".ctor", "(Landroid/graphics/text/MeasuredText;)V", "", ApiSince=29)]
public Builder (Android.Graphics.Text.MeasuredText text);
[<Android.Runtime.Register(".ctor", "(Landroid/graphics/text/MeasuredText;)V", "", ApiSince=29)>]
new Android.Graphics.Text.MeasuredText.Builder : Android.Graphics.Text.MeasuredText -> Android.Graphics.Text.MeasuredText.Builder
Parameters
- text
- MeasuredText
a text
- Attributes
Remarks
Construct a builder with existing MeasuredText.
The MeasuredText returned by build method will hold a reference of the text. Developer is not supposed to modify the text.
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
MeasuredText.Builder(Char[])
Construct a builder.
[Android.Runtime.Register(".ctor", "([C)V", "", ApiSince=29)]
public Builder (char[] text);
[<Android.Runtime.Register(".ctor", "([C)V", "", ApiSince=29)>]
new Android.Graphics.Text.MeasuredText.Builder : char[] -> Android.Graphics.Text.MeasuredText.Builder
Parameters
- text
- Char[]
a text
- Attributes
Remarks
Construct a builder.
The MeasuredText returned by build method will hold a reference of the text. Developer is not supposed to modify the text.
Java documentation for android.graphics.text.MeasuredText.Builder.MeasuredText$Builder(char[])
.
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.