In This Article

DataFilterResult Enum

Specifies the result of a filter operation by an IDataFilter.

public enum DataFilterResult

Fields

Name Description
Excluded

The item did not pass all filter conditions and will not be included in the filter. None of its tree descendants will be examined by the filter.

Included

The item passed all filter conditions and is included in the filter. Tree descendants will also be examined by the filter.

IncludedByDescendants

The item did not pass all filter conditions and will only be included in the filter if one or more of its tree descendants are included. Tree descendants will also be examined by the filter.

IncludedWithDescendants

The item passed all filter conditions and is included in the filter. Tree descendants may also be examined by the filter, but only for determining if their ancestors require expansion. Tree descendants will be included in the filter regardless of their own filter result.