Version: Unity 6 Preview (6000.0)
LanguageEnglish
  • C#

HierarchySearchFilterOperator

enumeration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Represents options for search filter operators. A colon (:) is the "contains" operator. A "-" is a "not" operator.

Properties

Equal Checks if a filter value is equal to the right-hand operand.
Contains Checks if a filter value occurs within the right-hand operand. For instance, with a string value Contains uses string.Contains.
Greater Checks if a numerical filter value is greater than the right-hand operand.
GreaterOrEqual Checks if a numerical filter value is greater than or equal to the right-hand operand.
Lesser Checks if a numerical filter value is less than the right-hand operand.
LesserOrEqual Checks if a numerical filter value is less than or equal to the right-hand operand.
NotEqual Checks if a filter value is different than the right-hand operand.
Not Checks for items that do not match the filter value.