Table of Contents

Enum SvgPaintType

Namespace
PaintDotNet.Direct2D1
Assembly
PaintDotNet.Windows.dll

Specifies the paint type for an SVG fill or stroke.
D2D1_SVG_PAINT_TYPE

public enum SvgPaintType

Fields

None = 0

The fill or stroke is not rendered.

Color = 1

A solid color is rendered.

CurrentColor = 2

The current color is rendered.

Uri = 3

A paint server, defined by another element in the SVG document, is used.

UriNone = 4

A paint server, defined by another element in the SVG document, is used. If the paint server reference is invalid, fall back to SvgPaintType.None.

UriColor = 5

A paint server, defined by another element in the SVG document, is used. If the paint server reference is invalid, fall back to SvgPaintType.Color.

UriCurrentColor = 6

A paint server, defined by another element in the SVG document, is used. If the paint server reference is invalid, fall back to SvgPaintType.CurrentColor.