Praeclarum.Graphics.CGContextEx.ShowTextAtPoint C# (CSharp) Метод

ShowTextAtPoint() публичный статический Метод

public static ShowTextAtPoint ( this c, float x, float y, byte bytes ) : void
c this
x float
y float
bytes byte
Результат void
		public static void ShowTextAtPoint (this CGContext c, float x, float y, byte[] bytes)
		{
			if (bytes == null)
				throw new ArgumentNullException ("bytes");
			CGContextShowTextAtPoint (c.Handle, x, y, bytes, bytes.Length);
		}
#endif