Click or drag to resize
CanvasSvgPaintType Enumeration
[Win10_15063] Specifies the paint type for an SVG fill or stroke.

Namespace:  Microsoft.Graphics.Canvas.Svg
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public enum CanvasSvgPaintType
Members
  Member nameValueDescription
None0[Win10_15063] The fill or stroke is not rendered.
Color1[Win10_15063] A solid color is rendered.
CurrentColor2[Win10_15063] The current color (i.e., color from further up in the DOM) is rendered.
Uri3[Win10_15063] A paint server, defined by another element in the SVG document, is used.
UriThenNone4[Win10_15063] A paint server, defined by another element in the SVG document, is used. If the paint server reference is invalid, fall back to CanvasSvgPaintType.None.
UriThenColor5[Win10_15063] A paint server, defined by another element in the SVG document, is used. If the paint server reference is invalid, fall back to CanvasSvgPaintType.Color.
UriThenCurrentColor6[Win10_15063] A paint server, defined by another element in the SVG document, is used. If the paint server reference is invalid, fall back to CanvasSvgPaintType.CurrentColor.
Remarks

This API is only available when running on Windows 10 build 15063 (Creators Update) or greater.

See Also