ICanvasRenderingContext2D.StrokeText

StrokeText(string, double, double)

Draws (strokes) a given text at the given (x, y) position.

public void StrokeText(string text, double x, double y)
ParameterTypeDescription
textStringThe text to draw using the current font, textAlign, textBaseline, and direction values.
xDoubleThe x axis of the coordinate for the text starting point.
yDoubleThe y axis of the coordinate for the text starting point.

See Also


StrokeText(string, double, double, double?)

Draws (strokes) a given text at the given (x, y) position.

public void StrokeText(string text, double x, double y, double? maxWidth)
ParameterTypeDescription
textStringThe text to draw using the current font, textAlign, textBaseline, and direction values.
xDoubleThe x axis of the coordinate for the text starting point.
yDoubleThe y axis of the coordinate for the text starting point.
maxWidthNullable`1The maximum width to draw. If specified, and the string is computed to be wider than this width, the font is adjusted to use a more horizontally condensed font (if one is available or if a reasonably readable one can be synthesized by scaling the current font horizontally) or a smaller font.

See Also