class InternalWindowContainer
- Extends:
- UIComponent
Description:
InternalWindowContainer UI component, extends UIComponent class.
Internal window container is a component designed to contain InternalWindow components.
For more methods for this component check UIComponent class.
Constructor
constructor()
InternalWindowContainer constructor.
Parameters:
No parameters
Members
- [ readonly ] childCount
- [ readonly ] children
- [ readonly ] container
- [ readonly ] id
- [ readonly ] parent
- [ readonly ] screenPosition
Methods
From this class:
Inherited from UIComponent:
- addChild()
- addTo()
- anchor()
- background()
- border()
- bottom()
- center()
- child()
- childIndex()
- contextMenu()
- cursor()
- destroy()
- dragAction()
- dragData()
- dragDataType()
- dropAction()
- dropDataType()
- dropMode()
- emit()
- emitFocusKeyEvents()
- enabled()
- focusable()
- focused()
- getAncestor()
- getWindow()
- height()
- hide()
- icon()
- index()
- isInside()
- layer()
- maxSize()
- minSize()
- move()
- onAncestorEvents()
- onComponentEvents()
- onContainerEvents()
- onDispose()
- onDragEvents()
- onDropEvents()
- onError()
- onFocusEvents()
- onKey()
- onMouseEvents()
- onMouseMotion()
- onMouseWheel()
- onPropertyChange()
- onScroll()
- opacity()
- paste()
- position()
- remove()
- right()
- scrollbars()
- scrollBarSize()
- scrollIncrement()
- scrollPosition()
- size()
- smoothScrolling()
- snapshot()
- text()
- tooltip()
- updateUI()
- verifyComponent()
- visible()
- width()
- x()
- y()
Examples:
const container = new InternalWindowContainer().size(600, 500).addTo(window);
const win1 = new InternalWindow("New Window Title").addTo(container);
