3 implementations of DrawText
Microsoft.Maui.Graphics (3)
AbstractCanvas.cs (1)
194 public abstract void DrawText(IAttributedText value, float x, float y, float width, float height);
PictureCanvas.cs (1)
179 public void DrawText(IAttributedText value, float x, float y, float width, float height)
ScalingCanvas.cs (1)
155 public void DrawText(IAttributedText value, float x, float y, float width, float height)
3 references to DrawText
Microsoft.Maui.Graphics (3)
ICanvas.cs (1)
217 /// <remarks>To draw attributed text, use <see cref="DrawText(IAttributedText, float, float, float, float)"/> instead.</remarks>
PictureCanvas.cs (1)
181 _commands.Add(canvas => canvas.DrawText(value, x, y, width, height));
ScalingCanvas.cs (1)
157 _canvas.DrawText(value, x * _scaleX, y * _scaleY, width * _scaleX, height * _scaleY);