Graphics.DrawString
DrawString(string, Font, Brush, RectangleF)
Draws the specified text string in the specified rectangle with the specified Brush and Font objects using the formatting attributes of the specified StringFormat.
public void DrawString(string s, Font font, Brush brush, RectangleF layoutRectangle)
Parameter | Type | Description |
---|---|---|
s | String | String to draw. |
font | Font | Font that defines the text format of the string. |
brush | Brush | Brush that determines the color and texture of the drawn text. |
layoutRectangle | RectangleF | RectangleF structure that specifies the location of the drawn text that are applied to the drawn text. |
See Also
- class Font
- class Brush
- struct RectangleF
- class Graphics
- namespace Aspose.Drawing
- assembly Aspose.Drawing.Common
DrawString(string, Font, Brush, PointF)
Draws the specified text string at the specified location with the specified Brush and Font objects.
public void DrawString(string s, Font font, Brush brush, PointF point)
Parameter | Type | Description |
---|---|---|
s | String | String to draw. |
font | Font | Font that defines the text format of the string. |
brush | Brush | Brush that determines the color and texture of the drawn text. |
point | PointF | PointF structure that specifies the upper-left corner of the drawn text. |
See Also
- class Font
- class Brush
- struct PointF
- class Graphics
- namespace Aspose.Drawing
- assembly Aspose.Drawing.Common
DrawString(string, Font, Brush, PointF, StringFormat)
Draws the specified text string at the specified location with the specified Brush and Font objects using the formatting attributes of the specified StringFormat.
public void DrawString(string s, Font font, Brush brush, PointF point, StringFormat format)
Parameter | Type | Description |
---|---|---|
s | String | String to draw. |
font | Font | Font that defines the text format of the string. |
brush | Brush | Brush that determines the color and texture of the drawn text. |
point | PointF | PointF structure that specifies the upper-left corner of the drawn text. |
format | StringFormat | StringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text. |
See Also
- class Font
- class Brush
- struct PointF
- class StringFormat
- class Graphics
- namespace Aspose.Drawing
- assembly Aspose.Drawing.Common
DrawString(string, Font, Brush, float, float, StringFormat)
Draws the specified text string at the specified location with the specified Brush and Font objects using the formatting attributes of the specified StringFormat.
public void DrawString(string s, Font font, Brush brush, float x, float y, StringFormat format)
Parameter | Type | Description |
---|---|---|
s | String | String to draw. |
font | Font | Font that defines the text format of the string. |
brush | Brush | Brush that determines the color and texture of the drawn text. |
x | Single | The x-coordinate of the upper-left corner of the drawn text. |
y | Single | The y-coordinate of the upper-left corner of the drawn text. |
format | StringFormat | StringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text. |
See Also
- class Font
- class Brush
- class StringFormat
- class Graphics
- namespace Aspose.Drawing
- assembly Aspose.Drawing.Common
DrawString(string, Font, Brush, float, float)
Draws the specified text string at the specified location with the specified Brush and Font objects.
public void DrawString(string s, Font font, Brush brush, float x, float y)
Parameter | Type | Description |
---|---|---|
s | String | String to draw. |
font | Font | Font that defines the text format of the string. |
brush | Brush | Brush that determines the color and texture of the drawn text. |
x | Single | The x-coordinate of the upper-left corner of the drawn text. |
y | Single | The y-coordinate of the upper-left corner of the drawn text. |
See Also
- class Font
- class Brush
- class Graphics
- namespace Aspose.Drawing
- assembly Aspose.Drawing.Common
DrawString(string, Font, Brush, RectangleF, StringFormat)
Draws the specified text string in the specified rectangle with the specified Brush and Font objects using the formatting attributes of the specified StringFormat.
public void DrawString(string s, Font font, Brush brush, RectangleF layoutRectangle,
StringFormat format)
Parameter | Type | Description |
---|---|---|
s | String | String to draw. |
font | Font | Font that defines the text format of the string. |
brush | Brush | Brush that determines the color and texture of the drawn text. |
layoutRectangle | RectangleF | RectangleF structure that specifies the location of the drawn text. |
format | StringFormat | StringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text. |
See Also
- class Font
- class Brush
- struct RectangleF
- class StringFormat
- class Graphics
- namespace Aspose.Drawing
- assembly Aspose.Drawing.Common