ksvg / com.github.nwillc.ksvg.attributes / HasStroke

HasStroke

(JS, JVM) interface HasStroke

An Element has a stroke associated.

Properties

(JS, JVM)

stroke

The stroke color.

abstract var stroke: String?
(JS, JVM)

strokeDashArray

The stroke dash array.

abstract var strokeDashArray: String?
(JS, JVM)

strokeWidth

The stroke width.

abstract var strokeWidth: String?

Inheritors

(JS, JVM)

HasStrokeImpl

A basic implementation of HasStroke.

class HasStrokeImpl : HasStroke, HasAttributes
(JS, JVM)

LINE

An SVG line element.

class LINE : Element, HasStroke
(JS, JVM)

Region

An abstract element that is a region and therefore has stroke and fill.

abstract class Region : Element, HasStroke, HasFill