styledPropertySheet
inline 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.
inline fun NodeContainer.styledPropertySheet(items: ObservableList<PropertySheet.Item>? = null, vararg styleClass: String, id: String? = null): PropertySheet
Add a styled PropertySheet to this container.
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 NodeContainer.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 container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.