Source set: Common
public class PaintingStyle internal constructor(@Suppress("unused") private val value: Int)
Strategies for painting shapes and paths on a canvas.
See Paint.style.
Functions
toString
Source set: Common
override fun toString(): String
Members
Companion
Source set: Common
public companion object
Properties
Fill
Source set: Common
public val Fill: PaintingStyle
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.
Stroke
Source set: Common
public val Stroke: PaintingStyle
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.