PageIndicator QML Type

A page indicator control. More...

Import Statement: import Qt.labs.controls 1.0
Inherits:

Control

Properties

Detailed Description

PageIndicator is used to indicate the currently active page in a container of multiple pages. PageIndicator consists of delegate items that present pages.

PageIndicator {
    count: 5
    currentIndex: 2
    anchors.horizontalCenter: parent.horizontalCenter
    anchors.bottom: parent.bottom
}

Note: Types in the Qt.labs module are not guaranteed to remain compatible in future versions.

See also SwipeView, Customizing PageIndicator, and Indicator Controls.

Property Documentation

count : int

This property holds the number of pages.


currentIndex : int

This property holds the index of the current page.


delegate : Component

This property holds a delegate that presents a page.

The following properties are available in the context of each delegate:

index : intThe index of the item
pressed : boolWhether the item is pressed

interactive : bool

This property holds whether the control is interactive. An interactive page indicator reacts to presses and automatically changes the current index appropriately.

The default value is false.


© 2017 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.