LineCap

The display of line endings.

enum LineCap : Enum<LineCap> , LayerProperty

Parameters

value

String value of this property

Entries

BUTT
Link copied to clipboard

A cap with a squared-off end which is drawn to the exact endpoint of the line.

BUTT("butt")
ROUND
Link copied to clipboard

A cap with a rounded end which is drawn beyond the endpoint of the line at a radius of one-half of the line's width and centered on the endpoint of the line.

ROUND("round")
SQUARE
Link copied to clipboard

A cap with a squared-off end which is drawn beyond the endpoint of the line at a distance of one-half of the line's width.

SQUARE("square")

Functions

compareTo
Link copied to clipboard
operator override fun compareTo(other: LineCap): Int
equals
Link copied to clipboard
operator override fun equals(other: Any?): Boolean
finalize
Link copied to clipboard
override fun finalize()
getDeclaringClass
Link copied to clipboard
override fun getDeclaringClass(): Class<LineCap>
hashCode
Link copied to clipboard
override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

name
Link copied to clipboard
override val name: String
ordinal
Link copied to clipboard
override val ordinal: Int
value
Link copied to clipboard

String value of this property

open override val value: String