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 : int The index of the item
pressed : bool Whether 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.

© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/archives/qt-5.6/qml-qt-labs-controls-pageindicator.html