From 61545b3f1fb1844af350d187edd26285e98f0466 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 26 Feb 2018 14:21:46 +0100 Subject: API documentation update --- .../pl.treksoft.kvision.modal/-modal/index.html | 60 +++++++++++----------- 1 file changed, 30 insertions(+), 30 deletions(-) (limited to 'docs/api/pl.treksoft.kvision.modal/-modal/index.html') diff --git a/docs/api/pl.treksoft.kvision.modal/-modal/index.html b/docs/api/pl.treksoft.kvision.modal/-modal/index.html index fe2c3fcb..4645b38f 100644 --- a/docs/api/pl.treksoft.kvision.modal/-modal/index.html +++ b/docs/api/pl.treksoft.kvision.modal/-modal/index.html @@ -18,7 +18,7 @@

<init>

-Modal(caption: String? = null, closeButton: Boolean = true, size: MODALSIZE? = null, animation: Boolean = true, escape: Boolean = true, classes: Set<String> = setOf(), init: Modal.() -> Unit = null) +Modal(caption: String? = null, closeButton: Boolean = true, size: ModalSize? = null, animation: Boolean = true, escape: Boolean = true, classes: Set<String> = setOf(), init: Modal.() -> Unit = null) @@ -40,7 +40,7 @@ var caption: String? -

Window content text.

+

Window caption text.

@@ -57,7 +57,7 @@

size

-var size: MODALSIZE? +var size: ModalSize?

Window size.

@@ -104,6 +104,15 @@ +

getChildren

+ + +open fun getChildren(): List<Component> +

Returns a list of children of the current container.

+ + + +

getSnAttrs

@@ -131,6 +140,24 @@ +

remove

+ + +open fun remove(child: Component): SimplePanel +

Removes given component from the current container.

+ + + + +

removeAll

+ + +open fun removeAll(): SimplePanel +

Removes all children from the current container.

+ + + +

removeAllButtons

@@ -181,33 +208,6 @@ -

getChildren

- - -open fun getChildren(): List<Component> -

Returns a list of children of the current container.

- - - - -

remove

- - -open fun remove(child: Component): SimplePanel -

Removes given component from the current container.

- - - - -

removeAll

- - -open fun removeAll(): SimplePanel -

Removes all children from the current container.

- - - -

render

-- cgit