Skip to content

Canvas::TextOut method

TextOut writes a string on the canvas, starting at (X, Y). It updates the pen position to the end of the string and uses the current font and brush.

Prototype

void TextOut(int x, int y, string text)
void TextOut(int x, int y, string text) throws IGRException;
def TextOut(self, x: int, y: int, text: string) -> void
void TextOut(int x, int y, const std::wstring& text)
void TextOut(int x, int y, std::wstring text)
HRESULT TextOut([in] int x, [in] int y, [in] BSTR text)

Parameters

x: int : Left-most coordinate of the bounding box.

y: int : Top-most coordinate of the bounding box.

text: string : The text to output to the canvas.