Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


RemoveOperator(string)

Removes a custom operator that was added on the QueryEngine.
Read time 1 minuteLast updated 5 days ago

Definition

public void RemoveOperator(string op)

Parameters

The operator identifier.

Examples

// Remove an operator based on its tokenvar operatorToken = "%";queryEngine.RemoveOperator(operatorToken);