Abstract base type providing functionality common to filters. 更多...
| import 语句: |
import QtQml.Models
|
| Since: | Qt 6.10 |
| 继承: | |
| 继承者: | |
| 状态: | 预备 |
This type is under development and is subject to change.
Filter provides a set of common properties for all the filters that they inherit from.
|
column : int |
This property specifies which column in the model the filter should be applied on. If the value is
-1
, the filter will be applied to all the columns in the model.
默认值为
-1
.
|
enabled : bool |
This property enables the SortFilterProxyModel to consider this filter while filtering the model data.
默认值为
true
.
|
invert : bool |
This property inverts the filter, causing the data that would normally be filtered out to be presented instead.
默认值为
false
.