RemoveOperator(string)
Removes a custom operator that was added on the QueryEngine.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Method
- Namespace: UnityEditor.Search
- Assembly: UnityEditor
public void RemoveOperator(string op)
Parameters
The operator identifier.
Examples
// Remove an operator based on its tokenvar operatorToken = "%";queryEngine.RemoveOperator(operatorToken);