styledPropertySheet

fun styledPropertySheet(items: ObservableList<PropertySheet.Item>? = null, vararg styleClass: String, id: String? = null): PropertySheet

Create a styled PropertySheet.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledPropertySheet(items: ObservableList<PropertySheet.Item>? = null, vararg styleClass: String, id: String? = null): PropertySheet

Add a styled PropertySheet to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledPropertySheet(items: ObservableList<PropertySheet.Item>? = null, vararg styleClass: String, id: String? = null, configuration: PropertySheet.() -> Unit): PropertySheet

Create a styled PropertySheet 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.styledPropertySheet(items: ObservableList<PropertySheet.Item>? = null, vararg styleClass: String, id: String? = null, configuration: PropertySheet.() -> Unit): PropertySheet

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