Canvas::TextHeight method¶
Returns the height in pixels, of a string if rendered with the current font.
Prototype¶
int TextHeight(string text)
int TextHeight(string text) throws IGRException;
def TextHeight(self, text: string) -> int
int TextHeight(const std::wstring& text)
int TextHeight(std::wstring text)
HRESULT TextHeight([in] BSTR text, [out, retval] int *result)
Parameters¶
text: string
: A string containing the text to be measured.
Return value¶
int
: Integer expressing the width or height.