Paint Enum

Paint enumeration

Specifies the paint options for the fill and stroke attributes in SVG elements.

public enum Paint

Values

NameValueDescription
None0Indicates no paint should be applied.
ContextFill1Uses the current context fill color for painting.
ContextStroke2Uses the current context stroke color for painting.

Remarks

This enumeration defines the types of paint that can be applied to the fill and stroke properties of SVG elements. It allows for standard color, context-based fills, and strokes, or no paint at all.

See Also