Enum EvaluateOptions
Provides enumerated values to use to set evaluation options.
Namespace: Unity.VisualScripting.Dependencies.NCalc
Syntax
[Flags]
public enum EvaluateOptions
Fields
Name | Description | Value |
---|---|---|
None | Specifies that no options are set. |
1 |
IgnoreCase | Specifies case-insensitive matching. |
2 |
NoCache | No-cache mode. Ingores any pre-compiled expression in the cache. |
4 |
IterateParameters | Treats parameters as arrays and result a set of results. |
8 |
RoundAwayFromZero | When using Round(), if a number is halfway between two others, it is rounded toward the nearest number that is away from zero. |
16 |