styledMeshView

fun styledMeshView(mesh: Mesh? = null, vararg styleClass: String, id: String? = null): MeshView

Create a styled MeshView.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledMeshView(mesh: Mesh? = null, vararg styleClass: String, id: String? = null): MeshView

Add a styled MeshView to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledMeshView(mesh: Mesh? = null, vararg styleClass: String, id: String? = null, configuration: MeshView.() -> Unit): MeshView

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

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