From d8cd67062b8de6e8398dc6dfd00d201200c82414 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Fri, 9 Feb 2018 13:40:35 +0100 Subject: API doc and readme --- .../pl.treksoft.kvision.panel/-grid-panel/add.html | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 docs/api/pl.treksoft.kvision.panel/-grid-panel/add.html (limited to 'docs/api/pl.treksoft.kvision.panel/-grid-panel/add.html') diff --git a/docs/api/pl.treksoft.kvision.panel/-grid-panel/add.html b/docs/api/pl.treksoft.kvision.panel/-grid-panel/add.html new file mode 100644 index 00000000..7f1d1f1d --- /dev/null +++ b/docs/api/pl.treksoft.kvision.panel/-grid-panel/add.html @@ -0,0 +1,45 @@ + + + +GridPanel.add - kvision + + + +kvision / pl.treksoft.kvision.panel / GridPanel / add
+
+

add

+ +fun add(child: Component, columnStart: Int? = null, rowStart: Int? = null, columnEnd: String? = null, rowEnd: String? = null, area: String? = null, justifySelf: GRIDJUSTIFY? = null, alignSelf: GRIDALIGN? = null, classes: Set<String> = setOf()): GridPanel +

Adds a component to the grid container.

+

Parameters

+

+child - child component

+

+columnStart - number of starting column

+

+rowStart - number of starting row

+

+columnEnd - number of ending column

+

+rowEnd - number of ending row

+

+area - grid area

+

+justifySelf - child self justification

+

+alignSelf - child self alignment

+

+classes - a set of CSS class names

+

Return
+current container

+ +open fun add(child: Component): GridPanel +

Overrides SimplePanel.add

+

Adds given component to the current container.

+

Parameters

+

+child - child component

+

Return
+current container

+ + -- cgit