TitledPaneContainer

interface TitledPaneContainer : Container<TitledPane>

Container of TitledPane.

See also

Accordion

Inheritors

Functions

Link copied to clipboard
abstract fun <T : TitledPane> addChild(child: T): T

Allows child to be added dynamically with Kotlin DSL in the context of this manager.

Link copied to clipboard
inline fun TitledPaneContainer.styledTitledPane(title: String? = null, vararg styleClass: String, id: String? = null): TitledPane

Add a styled TitledPane to this container.

inline fun TitledPaneContainer.styledTitledPane(title: String? = null, vararg styleClass: String, id: String? = null, configuration: KtfxTitledPane.() -> Unit): TitledPane

Add a styled TitledPane with configuration block to this container.

Link copied to clipboard
inline fun TitledPaneContainer.titledPane(title: String? = null): TitledPane

Add a TitledPane to this container.

inline fun TitledPaneContainer.titledPane(title: String? = null, configuration: KtfxTitledPane.() -> Unit): TitledPane

Add a TitledPane with configuration block to this container.