Enum PaintOrder
Namespace: Aspose.Svg.Builder
Assembly: Aspose.SVG.dll (25.5.0)
Specifies the order in which fill, stroke, and markers are applied to SVG elements.
[ComVisible(true)]
public enum PaintOrder
Fields
Fill = 1
Paint only the fill.
FillMarkers = 5
Paint in the order of fill, then markers.
FillMarkersStroke = 11
Paint in the order of fill, then markers, and finally stroke.
FillStroke = 4
Paint in the order of fill, then stroke.
FillStrokeMarkers = 10
Paint in the order of fill, then stroke, and finally markers.
Markers = 3
Paint only the markers.
MarkersFill = 8
Paint in the order of markers, then fill.
MarkersFillStroke = 14
Paint in the order of markers, then fill, and finally stroke.
MarkersStroke = 9
Paint in the order of markers, then stroke.
MarkersStrokeFill = 15
Paint in the order of markers, then stroke, and finally fill.
Normal = 0
The default paint order: first fill, then stroke, and finally markers.
Stroke = 2
Paint only the stroke.
StrokeFill = 6
Paint in the order of stroke, then fill.
StrokeFillMarkers = 12
Paint in the order of stroke, then fill, and finally markers.
StrokeMarkers = 7
Paint in the order of stroke, then markers.
StrokeMarkersFill = 13
Paint in the order of stroke, then markers, and finally fill.