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