CanvasDrawText Method (String, Point, Font, Fill, TextFormat) |
Draw a single line text string onto this canvas specifying the upper left corner position and text
formatting.
Namespace:
Atalasoft.Imaging.Drawing
Assembly:
Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public Size DrawText(
string text,
Point position,
Font font,
Fill foreColor,
TextFormat format
)
Public Function DrawText (
text As String,
position As Point,
font As Font,
foreColor As Fill,
format As TextFormat
) As Size
Parameters
- text
- Type: SystemString
The text string to draw. - position
- Type: System.DrawingPoint
The position of the upper left corner of the text rectangle to draw. - font
- Type: System.DrawingFont
The text font. - foreColor
- Type: Atalasoft.Imaging.DrawingFill
The text fill. - format
- Type: Atalasoft.Imaging.DrawingTextFormat
The text formatting to apply.
Return Value
Type:
Size The actual size of the text drawn.
See Also