Write text on the drawing.

autocad_request("draw_text", string stext, int posx, int posy, int textsize);


Here stext is the text to output,

posx and posy - text position,

textsize - text size.


Example.

Output text "123".


string text = "123";
autocad_request("draw_text", stext, 1.2, -2.3, 0.2);