Skip to content

Canvas::TextRect method

Writes a string inside a clipping rectangle, using the current brush and font.

Prototype

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

Parameters

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

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

x2: int : Right-most coordinate of the bounding box.

y2: int : Bottom-most coordinate of the bounding box.

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

flags: int : Reserved for future use.