styledImageView

fun styledImageView(image: Image? = null, vararg styleClass: String, id: String? = null): ImageView
fun styledImageView(imageUrl: String, vararg styleClass: String, id: String? = null): ImageView

Create a styled ImageView.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledImageView(image: Image? = null, vararg styleClass: String, id: String? = null): ImageView
fun NodeManager.styledImageView(imageUrl: String, vararg styleClass: String, id: String? = null): ImageView

Add a styled ImageView to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledImageView(image: Image? = null, vararg styleClass: String, id: String? = null, configuration: ImageView.() -> Unit): ImageView
inline fun styledImageView(imageUrl: String, vararg styleClass: String, id: String? = null, configuration: ImageView.() -> Unit): ImageView

Create a styled ImageView 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.styledImageView(image: Image? = null, vararg styleClass: String, id: String? = null, configuration: ImageView.() -> Unit): ImageView
inline fun NodeManager.styledImageView(imageUrl: String, vararg styleClass: String, id: String? = null, configuration: ImageView.() -> Unit): ImageView

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