styledMeshView
inline 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.
inline fun NodeContainer.styledMeshView(mesh: Mesh? = null, vararg styleClass: String, id: String? = null): MeshView
Add a styled MeshView to this container.
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 NodeContainer.styledMeshView(mesh: Mesh? = null, vararg styleClass: String, id: String? = null, configuration: MeshView.() -> Unit): MeshView
Add a styled MeshView with configuration block to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.