Exemple #1
0
 /// <summary>
 /// Draws the specified string at the specified location.
 /// </summary>
 /// <param name="destX"></param>
 /// <param name="destY"></param>
 /// <param name="text"></param>
 public void DrawText(int destX, int destY, string text)
 {
     impl.DrawText(destX, destY, mTransformer.Transform(text));
 }