Enum PaintStyle
Specifies the type of brush or fill style used for painting shapes or strokes. Helps distinguish between solid colors and gradient fills.
public enum PaintStyle
  Fields
LinearGradient = 1A linear gradient that transitions colors along a straight line.
RadialGradient = 2A radial gradient that transitions colors outward in a circular or elliptical shape.
SolidColor = 0A single, uniform color.