Container QML Type
A container control base type. More...
Import Statement: | import Qt.labs.controls 1.0 |
Inherits: | |
Inherited By: |
Properties
- contentChildren : list<Item>
- contentData : list<Object>
- contentModel : model
- count : int
- currentIndex : int
- currentItem : Item
Methods
- void addItem(Item item)
- void insertItem(int index, Item item)
- Item itemAt(int index)
- void moveItem(int from, int to)
- void removeItem(int index)
Detailed Description
Container is the base type of container-like user interface controls.
Note: Types in the Qt.labs module are not guaranteed to remain compatible in future versions.
See also Container Controls.
Property Documentation
This property holds the list of content children.
See also Item::children.
This property holds the list of content data.
See also Item::data.
Method Documentation
Removes an item at index.
Note: The ownership of the item is transferred to the caller.