Canvas::SetFont method¶
SetFont specifies the font to be used when drawing text to the canvas. All subsequent calls to TextOut and MeasureText will use this font.
Prototype¶
void SetFont(string name, int size, int style)
void SetFont(string name, int size, int style) throws IGRException;
def SetFont(self, name: string, size: int, style: int) -> void
void SetFont(const std::wstring& name, int size, int style)
void SetFont(std::wstring name, int size, int style)
HRESULT SetFont([in] BSTR name, [in] int size, [in] int style)
Parameters¶
name: string
: Font Family name to use; this is the font display name such as ‘Arial’ or ‘Courier New.’
size: int
: The size to render the font.
style: int
: A bitmask of style information. See Font Styles for details.