styledJfxDrawer

inline fun styledJfxDrawer(vararg styleClass: String, id: String? = null): JFXDrawer

Create a styled JFXDrawer.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun NodeContainer.styledJfxDrawer(vararg styleClass: String, id: String? = null): JFXDrawer

Add a styled JFXDrawer to this container.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledJfxDrawer(vararg styleClass: String, id: String? = null, configuration: KtfxJfxDrawer.() -> Unit): JFXDrawer

Create a styled JFXDrawer 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.styledJfxDrawer(vararg styleClass: String, id: String? = null, configuration: KtfxJfxDrawer.() -> Unit): JFXDrawer

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