Specifies the method that is used to perform boolean calculations on the value and parameter.
Namespace:
BytecodeApi.UI.Converters
Assembly:
BytecodeApi.UI (in BytecodeApi.UI.dll)
public enum BooleanMathConverterMethod
Public Enumeration BooleanMathConverterMethod
public enum class BooleanMathConverterMethod
| Member name | Description |
---|
| And |
Performs a boolean and operation on the value and parameter:
value && parameter |
| Or |
Performs a boolean or operation on the value and parameter:
value || parameter |
| Xor |
Performs a boolean xor operation on the value and parameter:
value ^ parameter |