PaintOrder Enum
PaintOrder enumeration
Specifies the order in which fill, stroke, and markers are applied to SVG elements.
public enum PaintOrder
Values
| Name | Value | Description | 
|---|---|---|
| Normal | 0 | The default paint order: first fill, then stroke, and finally markers. | 
| Fill | 1 | Paint only the fill. | 
| Stroke | 2 | Paint only the stroke. | 
| Markers | 3 | Paint only the markers. | 
| FillStroke | 4 | Paint in the order of fill, then stroke. | 
| FillMarkers | 5 | Paint in the order of fill, then markers. | 
| StrokeFill | 6 | Paint in the order of stroke, then fill. | 
| StrokeMarkers | 7 | Paint in the order of stroke, then markers. | 
| MarkersFill | 8 | Paint in the order of markers, then fill. | 
| MarkersStroke | 9 | Paint in the order of markers, then stroke. | 
| FillStrokeMarkers | 10 | Paint in the order of fill, then stroke, and finally markers. | 
| FillMarkersStroke | 11 | Paint in the order of fill, then markers, and finally stroke. | 
| StrokeFillMarkers | 12 | Paint in the order of stroke, then fill, and finally markers. | 
| StrokeMarkersFill | 13 | Paint in the order of stroke, then markers, and finally fill. | 
| MarkersFillStroke | 14 | Paint in the order of markers, then fill, and finally stroke. | 
| MarkersStrokeFill | 15 | Paint in the order of markers, then stroke, and finally fill. | 
See Also
- namespace Aspose.Svg.Builder
 - assembly Aspose.SVG