3 implementations of DrawString
Microsoft.Maui.Graphics (3)
AbstractCanvas.cs (1)
183 public abstract void DrawString(
PictureCanvas.cs (1)
173 public void DrawString(string value, float x, float y, float width, float height, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment,
ScalingCanvas.cs (1)
149 public void DrawString(string value, float x, float y, float width, float height, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment,
4 references to DrawString
Microsoft.Maui.Graphics (4)
CanvasExtensions.cs (2)
165 target.DrawString(value, (float)bounds.X, (float)bounds.Y, (float)bounds.Width, (float)bounds.Height, horizontalAlignment, verticalAlignment, textFlow, lineSpacingAdjustment); 177 target.DrawString(value, bounds.X, bounds.Y, bounds.Width, bounds.Height, horizontalAlignment, verticalAlignment, textFlow, lineSpacingAdjustment);
PictureCanvas.cs (1)
176 _commands.Add(canvas => canvas.DrawString(value, x, y, width, height, horizontalAlignment, verticalAlignment, textFlow, lineSpacingAdjustment));
ScalingCanvas.cs (1)
152 _canvas.DrawString(value, x * _scaleX, y * _scaleY, width * _scaleX, height * _scaleY, horizontalAlignment, verticalAlignment, textFlow);