styledWebView

fun styledWebView(vararg styleClass: String, id: String? = null): WebView

Create a styled WebView.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledWebView(vararg styleClass: String, id: String? = null): WebView

Add a styled WebView to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledWebView(vararg styleClass: String, id: String? = null, configuration: WebView.() -> Unit): WebView

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

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