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