[]
Draw SVG data with content alignment.
public void DrawSvg(string text, RectangleF rc)
Type | Name | Description |
---|---|---|
string | text | The SVG text data. |
RectangleF | rc | The drawing rectangle. |
SVG data rendered as a bitmap.
Draw SVG data with content alignment.
public void DrawSvg(string text, RectangleF rc, RectangleF rcClip)
Type | Name | Description |
---|---|---|
string | text | The SVG text data. |
RectangleF | rc | The drawing SVG rectangle. |
RectangleF | rcClip | The drawing clip for SVG rectangle. |
SVG data rendered as a bitmap.
Draws the specified SVG data at the specified location,
adjusting the SVG size as specified by the align
and
mode
parameters.
public void DrawSvg(string text, RectangleF rc, ContentAlignment align, ImageSizeMode mode)
Type | Name | Description |
---|---|---|
string | text | The SVG text data. |
RectangleF | rc | RectangleF structure that specifies the location of the drawn SVG, in points from the top left corner of the page. |
ContentAlignment | align | ContentAlignment value that specifies how the SVG should be aligned within the rectangle. |
ImageSizeMode | mode | ImageSizeMode value that specifies how the SVG should be sized to fit the rectangle. |
SVG data rendered as a bitmap.