From 70ed562ae730f65671defed6ed79d08d8126d467 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 5 Mar 2018 08:46:18 +0100 Subject: API doc update --- .../-header-cell/-init-.html | 27 ++++++ .../-header-cell/header-cell.html | 16 ++++ .../-header-cell/index.html | 104 +++++++++++++++++++++ 3 files changed, 147 insertions(+) create mode 100644 api/pl.treksoft.kvision.table/-header-cell/-init-.html create mode 100644 api/pl.treksoft.kvision.table/-header-cell/header-cell.html create mode 100644 api/pl.treksoft.kvision.table/-header-cell/index.html (limited to 'api/pl.treksoft.kvision.table/-header-cell') diff --git a/api/pl.treksoft.kvision.table/-header-cell/-init-.html b/api/pl.treksoft.kvision.table/-header-cell/-init-.html new file mode 100644 index 00000000..603ce522 --- /dev/null +++ b/api/pl.treksoft.kvision.table/-header-cell/-init-.html @@ -0,0 +1,27 @@ + + + +HeaderCell.<init> - kvision + + + +kvision / pl.treksoft.kvision.table / HeaderCell / <init>
+
+

<init>

+ +HeaderCell(text: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String> = setOf(), init: HeaderCell.() -> Unit = null) +

Parameters

+

+text - text content of the cell

+

+rich - determines if text can contain HTML code

+

+align - text align

+

+classes - a set of CSS class names

+

+init - an initializer extension function

+

Constructor
+

+ + diff --git a/api/pl.treksoft.kvision.table/-header-cell/header-cell.html b/api/pl.treksoft.kvision.table/-header-cell/header-cell.html new file mode 100644 index 00000000..a34e71c7 --- /dev/null +++ b/api/pl.treksoft.kvision.table/-header-cell/header-cell.html @@ -0,0 +1,16 @@ + + + +HeaderCell.headerCell - kvision + + + +kvision / pl.treksoft.kvision.table / HeaderCell / headerCell
+
+

headerCell

+ +fun Row.headerCell(text: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String> = setOf(), init: HeaderCell.() -> Unit = null): HeaderCell +

DSL builder extension function.

+

It takes the same parameters as the constructor of the built component.

+ + diff --git a/api/pl.treksoft.kvision.table/-header-cell/index.html b/api/pl.treksoft.kvision.table/-header-cell/index.html new file mode 100644 index 00000000..a52e0895 --- /dev/null +++ b/api/pl.treksoft.kvision.table/-header-cell/index.html @@ -0,0 +1,104 @@ + + + +HeaderCell - kvision + + + +kvision / pl.treksoft.kvision.table / HeaderCell
+
+

HeaderCell

+open class HeaderCell : Tag +

HTML table header cell component.

+

Constructors

+ + + + + + + +
+

<init>

+
+HeaderCell(text: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String> = setOf(), init: HeaderCell.() -> Unit = null)
+

Inherited Properties

+ + + + + + + + + + + + + + + + + + + +
+

align

+
+var align: Align? +

Text align.

+
+

rich

+
+var rich: Boolean +

Determines if text can contain HTML code.

+
+

text

+
+var text: String? +

Text content of the tag.

+
+

type

+
+var type: TAG +

Tag type.

+
+

Inherited Functions

+ + + + + + + + + + + +
+

getSnClass

+
+open fun getSnClass(): List<StringBoolPair> +

Returns list of CSS class names for current widget in the form of a List.

+
+

render

+
+open fun render(): VNode +

Renders current component as a Snabbdom vnode.

+
+

Companion Object Functions

+ + + + + + + +
+

headerCell

+
+fun Row.headerCell(text: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String> = setOf(), init: HeaderCell.() -> Unit = null): HeaderCell +

DSL builder extension function.

+
+ + -- cgit