Interface IFilterNode
Interface representing a filter node.
Inherited Members
Namespace: UnityEditor.Search
Syntax
public interface IFilterNode : IQueryNode
Properties
filterId
The filter identifier.
Declaration
string filterId { get; }
Property Value
Type | Description |
---|---|
String |
filterValue
The filter value. This can be null or empty if the value has not been written yet.
Declaration
string filterValue { get; }
Property Value
Type | Description |
---|---|
String |
operatorId
The operator identifier. This can be null or empty if the operator has not been written yet.
Declaration
string operatorId { get; }
Property Value
Type | Description |
---|---|
String |
paramValue
The parameter value. This can be null or empty if the filter is not a filter function, or there is no parameter written yet.
Declaration
string paramValue { get; }
Property Value
Type | Description |
---|---|
String |