[]
Draws the specified text string in the specified rectangle with the specified Color and Font objects.
int DrawString(string text, Font font, Color color, RectangleF rc)
Type | Name | Description |
---|---|---|
string | text | String to draw. |
Font | font | Font object that defines the appearance and size of the drawn text. |
Color | color | The color of the drawn text. |
RectangleF | rc | The rectangle structure that specifies the location of the drawn text, in points from the top left corner of the page. |
Type | Description |
---|---|
int | The index of first character that was not printed because it did not fit in the specified rectangle. |
Draws the specified text string in the specified rectangle with the specified Color and Font objects using the formatting attributes of the specified StringFormat object.
int DrawString(string text, Font font, Color color, RectangleF rc, StringFormat sf)
Type | Name | Description |
---|---|---|
string | text | String to draw. |
Font | font | Font object that defines the appearance and size of the drawn text. |
Color | color | The color of the drawn text. |
RectangleF | rc | The rectangle structure that specifies the location of the drawn text, in points from the top left corner of the page. |
StringFormat | sf | StringFormat object that specifies formatting attributes applied to the drawn text. |
Type | Description |
---|---|
int | The index of first character that was not printed because it did not fit in the specified rectangle. |
int DrawString(string text, Font font, Color color, PointF pt)
Type | Name | Description |
---|---|---|
string | text | String to draw. |
Font | font | Font object that defines the appearance and size of the drawn text. |
Color | color | The object that defines the color of the drawn text. |
PointF | pt | The point structure that specifies the location of the drawn text, in points from the top left corner of the page. |
Type | Description |
---|---|
int | The index of first character that was not printed because it did not fit in the specified rectangle. |