Draws the text.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public void DrawText(
	string text,
	Font font,
	Brush brush,
	Rectangle bounds,
	StringFormat format,
	Graphics graphics
)
Visual Basic
Public Sub DrawText ( 
	text As String,
	font As Font,
	brush As Brush,
	bounds As Rectangle,
	format As StringFormat,
	graphics As Graphics
)
Visual C++
public:
virtual void DrawText(
	String^ text, 
	Font^ font, 
	Brush^ brush, 
	Rectangle bounds, 
	StringFormat^ format, 
	Graphics^ graphics
) sealed
F#
abstract DrawText : 
        text : string * 
        font : Font * 
        brush : Brush * 
        bounds : Rectangle * 
        format : StringFormat * 
        graphics : Graphics -> unit 
override DrawText : 
        text : string * 
        font : Font * 
        brush : Brush * 
        bounds : Rectangle * 
        format : StringFormat * 
        graphics : Graphics -> unit 

Parameters

text
Type: System..::..String
The text.
font
Type: System.Drawing..::..Font
The font.
brush
Type: System.Drawing..::..Brush
The brush.
bounds
Type: System.Drawing..::..Rectangle
The bounds.
format
Type: System.Drawing..::..StringFormat
The format.
graphics
Type: System.Drawing..::..Graphics
The graphics.

Implements

IRender..::..DrawText(String, Font, Brush, Rectangle, StringFormat, Graphics)

See Also