This method draws text on the screen (if equipped).
Namespace:
ProScript
Assembly:
proscript-csharp (in proscript-csharp.dll) Version: 1.2.79.0 (1.2.79.0)
Syntax public void DrawText(
string text,
uint x,
uint y,
int align,
bool invert
)
Public Sub DrawText (
text As String,
x As UInteger,
y As UInteger,
align As Integer,
invert As Boolean
)
public:
void DrawText(
String^ text,
unsigned int x,
unsigned int y,
int align,
bool invert
)
member DrawText :
text : string *
x : uint32 *
y : uint32 *
align : int *
invert : bool -> unit
Parameters
- text
- Type: SystemString
text to draw - x
- Type: SystemUInt32
horizontal location of the text anchor on the screen - y
- Type: SystemUInt32
vertical location of the text anchor on the screen - align
- Type: SystemInt32
position of the text anchor relative to the text - invert
- Type: SystemBoolean
whether or not to invert the colors of the text
See Also