styledJFXTextField

fun styledJFXTextField(text: String? = null, 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.


fun NodeManager.styledJFXTextField(text: String? = null, vararg styleClass: String, id: String? = null): JFXTextField

Add a styled JFXTextField to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledJFXTextField(text: String? = null, 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 NodeManager.styledJFXTextField(text: String? = null, vararg styleClass: String, id: String? = null, configuration: JFXTextField.() -> Unit): JFXTextField

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