styledPolyline

fun styledPolyline(vararg styleClass: String, id: String? = null): Polyline

Create a styled Polyline.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledPolyline(vararg styleClass: String, id: String? = null): Polyline

Add a styled Polyline to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

Create a styled Polyline 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.styledPolyline(vararg styleClass: String, id: String? = null, configuration: Polyline.() -> Unit): Polyline

Add a styled Polyline 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.