NumericShaper.Shape 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
Shape(Char[], Int32, Int32) |
Converts the digits in the text that occur between start and start + count. |
Shape(Char[], Int32, Int32, NumericShaper+Range) |
Converts the digits in the text that occur between start and start + count. |
Shape(Char[], Int32, Int32, Int32) |
Converts the digits in the text that occur between start and start + count, using the provided context. |
Shape(Char[], Int32, Int32)
Converts the digits in the text that occur between start and start + count.
[Android.Runtime.Register("shape", "([CII)V", "")]
public void Shape (char[]? text, int start, int count);
[<Android.Runtime.Register("shape", "([CII)V", "")>]
member this.Shape : char[] * int * int -> unit
Parameters
- text
- Char[]
an array of characters to convert
- start
- Int32
the index into text
to start
converting
- count
- Int32
the number of characters in text
to convert
- Attributes
Remarks
Converts the digits in the text that occur between start and start + count.
Java documentation for java.awt.font.NumericShaper.shape(char[], int, 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
Shape(Char[], Int32, Int32, NumericShaper+Range)
Converts the digits in the text that occur between start and start + count.
[Android.Runtime.Register("shape", "([CIILjava/awt/font/NumericShaper$Range;)V", "", ApiSince=24)]
public void Shape (char[]? text, int start, int count, Java.Awt.Font.NumericShaper.Range? context);
[<Android.Runtime.Register("shape", "([CIILjava/awt/font/NumericShaper$Range;)V", "", ApiSince=24)>]
member this.Shape : char[] * int * int * Java.Awt.Font.NumericShaper.Range -> unit
Parameters
- text
- Char[]
an array of characters to convert
- start
- Int32
the index into <code>text</code> to start converting
- count
- Int32
the number of characters in <code>text</code> to convert
- context
- NumericShaper.Range
- Attributes
Remarks
Java documentation for java.awt.font.NumericShaper.shape(char[], int, 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
Shape(Char[], Int32, Int32, Int32)
Converts the digits in the text that occur between start and start + count, using the provided context.
[Android.Runtime.Register("shape", "([CIII)V", "")]
public void Shape (char[]? text, int start, int count, int context);
[<Android.Runtime.Register("shape", "([CIII)V", "")>]
member this.Shape : char[] * int * int * int -> unit
Parameters
- text
- Char[]
an array of characters
- start
- Int32
the index into text
to start
converting
- count
- Int32
the number of characters in text
to convert
- context
- Int32
the context to which to convert the
characters, such as NumericShaper.EUROPEAN
- Attributes
Remarks
Converts the digits in the text that occur between start and start + count, using the provided context. Context is ignored if the shaper is not a contextual shaper.
Java documentation for java.awt.font.NumericShaper.shape(char[], int, int, 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.