In This Article

VisualDescendantFilterBehavior Enum

Specifies the types of filter behaviors when searching down the visual tree.

public enum VisualDescendantFilterBehavior

Fields

Name Description
Continue

Indicates that the search should continue. The current item and it's children will still be traversed and potentially tested.

ContinueSkipChildren

Indicates that the search should continue, but the current item's children should be skipped. The current item will still be tested.

ContinueSkipSelf

Indicates that the search should continue, but the current item should be skipped. The current item's children will still be traversed and potentially tested.

ContinueSkipSelfAndChildren

Indicates that the search should continue, but the current item and it's children should be skipped.

Stop

Indicates that the search should be stopped and the current item should be returned.