Provides methods used to render a text with style sheets.
Public Static Methods | |
static void | draw_shadow_text (xtd::drawing::graphics &graphics, const xtd::drawing::rectangle &bounds, const xtd::string &text, const xtd::forms::style_sheets::itext_model &data, const xtd::forms::style_sheets::ibox_model &box) |
Draws shadow text. | |
static void | draw_text (xtd::drawing::graphics &graphics, const xtd::drawing::rectangle &bounds, const xtd::string &text, const xtd::forms::style_sheets::itext_model &data) |
Draws text. | |
static void | draw_shadow_text_and_links (xtd::drawing::graphics &graphics, const xtd::drawing::rectangle &bounds, const xtd::string &text, const xtd::forms::style_sheets::itext_model &data, const xtd::forms::style_sheets::ibox_model &box) |
static void | draw_text_and_links (xtd::drawing::graphics &graphics, const xtd::drawing::rectangle &bounds, const xtd::string &text, const xtd::forms::style_sheets::itext_model &data) |
|
static |
Draws shadow text.
graphics | The xtd::drawing::graphics used to draw text. |
bounds | The xtd::drawing::rectangle that specifies the bounds of the text. |
text | The xtd::string text to draw. |
data | The xtd::forms::style_sheets::itext_model class wish contains informations about how to draw the the text. |
box | xtd::forms::style_sheets::ibox_model class that contains the background color of the control. |
|
static |
Draws text.
graphics | The xtd::drawing::graphics used to draw text. |
bounds | The xtd::drawing::rectangle that specifies the bounds of the text. |
text | The xtd::string text to draw. |
data | The xtd::forms::style_sheets::itext_model class wish contains informations about how to draw the the text. |