GraphicsDrawText Method (Font, Color, Single, Single, String) |
Draws text with the specified font, color and location
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public void DrawText(
Font font,
Color color,
float x,
float y,
string text
)
Public Sub DrawText (
font As Font,
color As Color,
x As Single,
y As Single,
text As String
)
member DrawText :
font : Font *
color : Color *
x : float32 *
y : float32 *
text : string -> unit
Parameters
- font
- Type: Eto.DrawingFont
Font to draw the text with - color
- Type: Eto.DrawingColor
Color of the text - x
- Type: SystemSingle
X co-ordinate of where to start drawing the text - y
- Type: SystemSingle
Y co-ordinate of where to start drawing the text - text
- Type: SystemString
Text string to draw
See Also