Android.Graphics.Canvas.DrawPosText Method
Draw the text in the array, with each character's origin specified by the pos array.

Syntax

[Android.Runtime.Register("drawPosText", "([CII[FLandroid/graphics/Paint;)V", "GetDrawPosText_arrayCIIarrayFLandroid_graphics_Paint_Handler")]
[System.Obsolete("deprecated")]
public virtual void DrawPosText (char[] text, int index, int count, float[] pos, Paint paint)

Parameters

text
The text to be drawn
index
The index of the first character to draw
count
The number of characters to draw, starting from index.
pos
Array of [x,y] positions, used to position each character
paint
The paint used for the text (e.g. color, size, style)

Remarks

Draw the text in the array, with each character's origin specified by the pos array. This method does not support glyph composition and decomposition and should therefore not be used to render complex scripts. It also doesn't handle supplementary characters (eg emoji).

[Android Documentation]

Requirements

Namespace: Android.Graphics
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1