ChartDirector 7.1 (.NET Edition)

DrawArea.text2


Usage

[C#]public void text2(string str, string font, int fontIndex, double fontHeight, double fontWidth, double angle, bool vertical, int x, int y, int color [, int alignment ]);
[VB]Public Sub text2(str As String, font As String, fontIndex As Integer, fontHeight As Double, fontWidth As Double, angle As Double, vertical As Boolean, x As Integer, y As Integer, color As Integer [, alignment As Integer ])

Description

Draws text.

Arguments

ArgumentDefaultDescription
str(Mandatory)A string representing the text to be drawn. CDML
font(Mandatory)The font name. See Font Specification for details on various font attributes.
fontIndex(Mandatory)The font index in case the font name refers to a font collection. An index of 0 means the first font.
fontHeight(Mandatory)The font height in points.
fontWidth(Mandatory)The font width in points.
angle(Mandatory)The rotation angle of the text. The angle is measured in degrees in clockwise direction.
vertical(Mandatory)This argument is for compatibility with older versions of ChartDirector. Always set it to false.
x(Mandatory)The x coordinate of a reference point to align the text.
y(Mandatory)The y coordinate of a reference point to align the text.
color(Mandatory)The color of the text.
alignmentTopLeftThe position of the text relative to the reference point. See Alignment Specification for supported alignment types.

Return Value

None