PaintingStyle

Class

Common
value class PaintingStyle internal constructor(@Suppress("unused") private val value: Int)

Strategies for painting shapes and paths on a canvas.

See Paint.style.

Companion Object

Properties

Common
val Fill = PaintingStyle(0)

Apply the Paint to the inside of the shape. For example, when applied to the Canvas.drawCircle call, this results in a disc of the given size being painted.

Common
val Stroke = PaintingStyle(1)

Apply the Paint to the edge of the shape. For example, when applied to the Canvas.drawCircle call, this results is a hoop of the given size being painted. The line drawn on the edge will be the width given by the Paint.strokeWidth property.