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