Filter QML Type

Abstract base type providing functionality common to filters. 更多...

import 语句: import QtQml.Models
Since: Qt 6.10
继承:

QtObject

继承者:

FunctionFilter and RoleFilter

状态: 预备

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 .