DrawString1
Previous
Next
Draws a string on the image.
Syntax: DrawString1 (string As String, FontSize As Single, brush As SolidBrush, x As Single, y As Single)
Example:
'Add a Drawer object named drawer and a Brush object named brush1.
Sub
Globals
End Sub
Sub
App_Start
Form1.Show
drawer.New1("Form1",false)
brush1.New1(cRed)
drawer.DrawString1("Hello world!!!",10, brush1.Value, 30,30)
drawer.Refresh(30,30,50,30)
End Sub