[]
Draw text string into this document in next position.
public void DrawString(string text, Rect rc)
Type | Name | Description |
---|---|---|
string | text | The text string of the paragraph. |
Rect | rc | The drawing rectangle. |
Draw text string into this document in next position.
public void DrawString(string text, Font font, Color clr, Rect rc)
Type | Name | Description |
---|---|---|
string | text | The text string of the paragraph. |
Font | font | The drawing font. |
Color | clr | The drawing color. |
Rect | rc | The drawing rectangle. |
Draw text string into this document in next position.
public void DrawString(string text, Font font, Color clr, Rect rc, StringFormat sf)
Type | Name | Description |
---|---|---|
string | text | The text string of the paragraph. |
Font | font | The drawing font. |
Color | clr | The drawing color. |
Rect | rc | The drawing rectangle. |
StringFormat | sf | The drawing string format. |
Draws a string into the specified rectangle.
public void DrawString(TextBlock tb, Rect rc, bool overlapping = false)
Type | Name | Description |
---|---|---|
TextBlock | tb | TextBlock that contains the text and formatting options. |
Rect | rc | A rectangle that specifies the size and position of the text, in points. |
bool | overlapping | Is overlapping or no exist TextBox object. |