append

abstract infix fun append(content: String): ComponentBuilder

Appends a string content to this component builder.

Return

this component builder for chaining

Parameters

content

the string content to append


abstract infix fun append(component: Component): ComponentBuilder

Appends a component to this component builder.

Return

this component builder for chaining

Parameters

component

the component to append


Extension property to append this string directly to the component builder. Provides a convenient property-style syntax for appending strings.