TitledPaneManager

interface TitledPaneManager : KtfxManager<TitledPane>

Container of TitledPane.

See also

Accordion

Functions

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

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

Inheritors

Link copied to clipboard

Extensions

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

Add a styled TitledPane to this manager.

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

Add a styled TitledPane with configuration block to this manager.

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

Add a TitledPane to this manager.

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

Add a TitledPane with configuration block to this manager.