API Panel.Graphics.DrawText

From Flowcode Help
Revision as of 15:57, 16 January 2014 by JonnyW (talk | contribs) (XML import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

<sidebar>API Contents</sidebar> Draws a line of text texture

Class hierarchy

Panel

Graphics
DrawText

Parameters

FLOAT X

Initial horizontal position of text (depends on Align)

FLOAT Y

Initial vertical position of text (depends on Align)

STRING Text

The text to draw, may be multiple lines

BYTE Align

The text alignment
The default value for this parameter is: 0
Typical values for this parameter:
Name Description
Align_TopLeft Text is left aligned and drawn below the Y coordinate
Align_TopCenter Text is center aligned and drawn below the Y coordinate
Align_TopRight Text is right aligned and drawn below the Y coordinate
Align_CenterLeft Text is left aligned and vertically centered
Align_Center Text is horizontally aligned and vertically centered
Align_CenterRight Text is right aligned and vertically centered
Align_BottomLeft Text is left aligned and drawn above the Y coordinate
Align_BottomCenter Text is center aligned drawn above the Y coordinate
Align_BottomRight Text is right aligned drawn above the Y coordinate


Return value

This call does not return a value


Detailed description

No additional information


Examples

Calling in a calculation

  • Add to a calculation icon:
    ::Panel.Graphics.DrawText(x, y, "text", ::Panel.Graphics.Align_TopLeft)

No additional examples