TumblerColumn QML Type

A column within a tumbler. 更多...

导入语句: import QtQuick.Extras 1.4
Since: Qt 5.5
继承:

QtObject

特性

详细描述

TumblerColumn represents a column within a tumbler, providing the interface to define the items and width of each column.

Tumbler {
    TumblerColumn {
        model: [1, 2, 3]
    }
    TumblerColumn {
        model: ["A", "B", "C"]
        visible: false
    }
}
					

You can create a custom appearance for a Tumbler by assigning a TumblerStyle .

特性文档编制

[read-only] activeFocus : bool

This read-only property indicates whether the item has active focus.

See Item's activeFocus property for more information.


columnForeground : 组件

The foreground of this column.

If set, this component will be used to display the foreground in this column, instead of the columnForeground property in TumblerStyle .


[read-only] currentIndex : int

This read-only property holds the index of the current item for this column. If the model count is reduced, the current index will be reduced to the new count minus one.

另请参阅 Tumbler::currentIndexAt and Tumbler::setCurrentIndexAt .


delegate : 组件

The item delegate for this column.

If set, this delegate will be used to display items in this column, instead of the delegate property in TumblerStyle .

implicitHeight property must be set, and it must be the same for each delegate.


highlight : 组件

The highlight delegate for this column.

If set, this highlight will be used to display the highlight in this column, instead of the highlight property in TumblerStyle .


model : var

This property holds the model that provides data for this column.


role : string

This property holds the model role of this column.


visible : bool

This property holds the visibility of this column.


width : real

This property holds the width of this column.