ksvg / com.github.nwillc.ksvg.attributes

Package com.github.nwillc.ksvg.attributes

Types

(JS, JVM)

AttributeType

An enumeration of attribute types and how to verify if a value is of this type.

enum class AttributeType
(JS, JVM)

HasAttributes

This interface describes how SVG handles attributes.

interface HasAttributes
(JS, JVM)

HasAttributesImpl

A basic implementation of HasAttributes.

open class HasAttributesImpl : HasAttributes
(JS, JVM)

HasDimensions

An Element has height and width dimensions.

interface HasDimensions
(JS, JVM)

HasDimensionsImpl

A basic implementation of HasDimensions.

class HasDimensionsImpl : HasDimensions, HasAttributes
(JS, JVM)

HasFill

An Element can have a fill color.

interface HasFill
(JS, JVM)

HasFillImpl

A basic implementation of HasFill.

class HasFillImpl : HasFill, HasAttributes
(JS, JVM)

HasOrigin

An Element has x,y origin.

interface HasOrigin
(JS, JVM)

HasOriginImpl

A Basic implementation of HasOrigin.

class HasOriginImpl : HasOrigin, HasAttributes
(JS, JVM)

HasStroke

An Element has a stroke associated.

interface HasStroke
(JS, JVM)

HasStrokeImpl

A basic implementation of HasStroke.

class HasStrokeImpl : HasStroke, HasAttributes