Window
open class Window(caption: String?, contentWidth: <ERROR CLASS>?, contentHeight: <ERROR CLASS>?, isResizable: Boolean, isDraggable: Boolean, closeButton: Boolean, maximizeButton: Boolean, minimizeButton: Boolean, icon: String?, className: String?, init: Window.() -> Unit?)
Content copied to clipboard
Floating window container.
Parameters
caption
window title
content Width
window content width
content Height
window content height
is Resizable
determines if the window is resizable
is Draggable
determines if the window is draggable
close Button
determines if Close button is visible
maximize Button
determines if Maximize button is visible
minimize Button
determines if Minimize button is visible
class Name
CSS class names
init
an initializer extension function
Constructors
Window
Link copied to clipboard
fun Window(caption: String? = null, contentWidth: <ERROR CLASS>? = CssSize(0, UNIT.auto), contentHeight: <ERROR CLASS>? = CssSize(0, UNIT.auto), isResizable: Boolean = true, isDraggable: Boolean = true, closeButton: Boolean = false, maximizeButton: Boolean = false, minimizeButton: Boolean = false, icon: String? = null, className: String? = null, init: Window.() -> Unit? = null)
Content copied to clipboard
Types
Functions
after Create
Link copied to clipboard
after Destroy
Link copied to clipboard
dispose All
Link copied to clipboard
get Children
Link copied to clipboard
toggle Maximize
Link copied to clipboard
Maximize or restore the window size.
toggle Minimize
Link copied to clipboard
Minimize or restore the window size.
Properties
closeButton
Link copied to clipboard
contentHeight
Link copied to clipboard
contentOverflow
Link copied to clipboard
contentWidth
Link copied to clipboard
isDraggable
Link copied to clipboard
isResizable
Link copied to clipboard
maximizeButton
Link copied to clipboard
minimizeButton
Link copied to clipboard