Stack QML Type
Provides attached properties for items pushed onto a StackView. More...
Import Statement: | import QtQuick.Controls 1.4 |
Attached Properties
Detailed Description
The Stack type provides attached properties for items pushed onto a StackView. It gives specific information about the item, such as its status and index in the stack view the item is in.
See also StackView.
Attached Property Documentation
[read-only] Stack.index : int |
This property holds the index of the item inside StackView, so that StackView.get(index) will return the item itself. If view is null
, index will be -1
.
[read-only] Stack.status : enumeration |
This property holds the status of the item. It can have one of the following values:
Stack.Inactive
: the item is not visibleStack.Activating
: the item is transitioning into becoming an active item on the stackStack.Active
: the item is on top of the stackStack.Deactivating
: the item is transitioning into becoming inactive
[read-only] Stack.view : StackView |
© 2019 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.