Filter QML Type
Abstract base type providing functionality common to filters. More...
Import Statement: | import QtQml.Models |
Since: | Qt 6.10 |
Inherits: | |
Inherited By: | |
Status: | Preliminary |
This type is under development and is subject to change.
Properties
Detailed Description
Filter provides a set of common properties for all the filters that they inherit from.
Property Documentation
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.
The default value is -1
.
enabled : bool |
This property enables the SortFilterProxyModel to consider this filter while filtering the model data.
The default value is true
.
invert : bool |
This property inverts the filter, causing the data that would normally be filtered out to be presented instead.
The default value is false
.