This documentation is archived and is not being maintained.
TextRenderer::DrawText Method
Visual Studio 2010
Draws the specified text at the specified location, using the specified device context, color, and font.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
DrawText(IDeviceContext, String, Font, Point, Color) | Draws the specified text at the specified location using the specified device context, font, and color. |
|
DrawText(IDeviceContext, String, Font, Rectangle, Color) | Draws the specified text within the specified bounds, using the specified device context, font, and color. |
|
DrawText(IDeviceContext, String, Font, Point, Color, Color) | Draws the specified text at the specified location, using the specified device context, font, color, and back color. |
|
DrawText(IDeviceContext, String, Font, Point, Color, TextFormatFlags) | Draws the specified text at the specified location using the specified device context, font, color, and formatting instructions. |
|
DrawText(IDeviceContext, String, Font, Rectangle, Color, Color) | Draws the specified text within the specified bounds using the specified device context, font, color, and back color. |
|
DrawText(IDeviceContext, String, Font, Rectangle, Color, TextFormatFlags) | Draws the specified text within the specified bounds using the specified device context, font, color, and formatting instructions. |
|
DrawText(IDeviceContext, String, Font, Point, Color, Color, TextFormatFlags) | Draws the specified text at the specified location using the specified device context, font, color, back color, and formatting instructions |
|
DrawText(IDeviceContext, String, Font, Rectangle, Color, Color, TextFormatFlags) | Draws the specified text within the specified bounds using the specified device context, font, color, back color, and formatting instructions. |
The text rendering offered by the TextRenderer class is based on GDI text rendering and is not supported for printing from Windows Forms. Instead, use the DrawString methods of the Graphics class.
Show: