styledMediaView
inline fun styledMediaView(mediaPlayer: MediaPlayer? = null, vararg styleClass: String, id: String? = null): MediaView
Create a styled MediaView.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun NodeContainer.styledMediaView(mediaPlayer: MediaPlayer? = null, vararg styleClass: String, id: String? = null): MediaView
Add a styled MediaView to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun styledMediaView(mediaPlayer: MediaPlayer? = null, vararg styleClass: String, id: String? = null, configuration: MediaView.() -> Unit): MediaView
Create a styled MediaView 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.styledMediaView(mediaPlayer: MediaPlayer? = null, vararg styleClass: String, id: String? = null, configuration: MediaView.() -> Unit): MediaView
Add a styled MediaView 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.