Click or drag to resize

DXFReaderNETControlDrawText Method (Pen, String, Vector2, Double, Double, FontStyle, TextAlignment, Boolean)

Draws a text on the control.

Namespace:  DXFReaderNET
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax
public void DrawText(
	Pen Pen,
	string Text,
	Vector2 Position,
	double TextHeight,
	double Rotation = 0,
	FontStyle Style = FontStyle.Regular,
	TextAlignment TextAlignment = TextAlignment.BaselineLeft,
	bool Store = false
)

Parameters

Pen
Type: System.DrawingPen
the pen object to render the element
Text
Type: SystemString
the text
Position
Type: DXFReaderNETVector2
position of the text in drawing's units.
TextHeight
Type: SystemDouble
height of the text in drawing's units
Rotation (Optional)
Type: SystemDouble
Text rotation about position.
Style (Optional)
Type: System.DrawingFontStyle
Specifies style information applied to text.
TextAlignment (Optional)
Type: DXFReaderNET.EntitiesTextAlignment
The text alignment (Default value = TextAlignment.BaselineLef).
Store (Optional)
Type: SystemBoolean
If set to true the element is drawn again after a refresh.
Remarks
This method adds a text to the drawing without modifying the drawing database.
See Also