PaintOrder enumeration

PaintOrder enumeration

Specifies the order in which fill, stroke, and markers are applied to SVG elements.

The PaintOrder type exposes the following members:

Fields

FieldDescription
NORMALThe default paint order: first fill, then stroke, and finally markers.
FILLPaint only the fill.
STROKEPaint only the stroke.
MARKERSPaint only the markers.
FILL_STROKEPaint in the order of fill, then stroke.
FILL_MARKERSPaint in the order of fill, then markers.
STROKE_FILLPaint in the order of stroke, then fill.
STROKE_MARKERSPaint in the order of stroke, then markers.
MARKERS_FILLPaint in the order of markers, then fill.
MARKERS_STROKEPaint in the order of markers, then stroke.
FILL_STROKE_MARKERSPaint in the order of fill, then stroke, and finally markers.
FILL_MARKERS_STROKEPaint in the order of fill, then markers, and finally stroke.
STROKE_FILL_MARKERSPaint in the order of stroke, then fill, and finally markers.
STROKE_MARKERS_FILLPaint in the order of stroke, then markers, and finally fill.
MARKERS_FILL_STROKEPaint in the order of markers, then fill, and finally stroke.
MARKERS_STROKE_FILLPaint in the order of markers, then stroke, and finally fill.

See Also