styledSVGPath

fun styledSVGPath(vararg styleClass: String, id: String? = null): SVGPath

Create a styled SVGPath.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledSVGPath(vararg styleClass: String, id: String? = null): SVGPath

Add a styled SVGPath to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledSVGPath(vararg styleClass: String, id: String? = null, configuration: SVGPath.() -> Unit): SVGPath

Create a styled SVGPath with configuration block.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.


inline fun NodeManager.styledSVGPath(vararg styleClass: String, id: String? = null, configuration: SVGPath.() -> Unit): SVGPath

Add a styled SVGPath with configuration block to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.