| enum | PropertyOp : uint {
PropertyOp.Invalid = 0x00000000
,
PropertyOp.Subtract = 0x00000001
,
PropertyOp.Set = 0x00000002
,
PropertyOp.Add = 0x00000003
,
PropertyOp.Multiply = 0x00000004
,
PropertyOp.Divide = 0x00000005
,
PropertyOp.Or = 0x00000006
,
PropertyOp.Xor = 0x00000007
,
PropertyOp.And = 0x00000008
,
PropertyOp.On = 0x00000009
,
PropertyOp.Off = 0x0000000A
,
PropertyOp.Toggle = 0x0000000B
,
PropertyOp.Push = 0x0000000C
,
PropertyOp.LessThan = 0x0000000E
,
PropertyOp.Equals = 0x0000000F
,
PropertyOp.GreaterThan = 0x00000010
,
PropertyOp.NotEquals = 0x00000012
,
PropertyOp.Contains = 0x00000013
,
PropertyOp.LessThanOrEquals = 0x00000014
,
PropertyOp.GreaterThanOrEquals = 0x00000015
,
PropertyOp.Exists = 0x00000016
,
PropertyOp.NotExists = 0x00000017
,
PropertyOp.Random = 0x00000018
,
PropertyOp.Difference = 0x00000019
,
PropertyOp.LogicalOr = 0x0000001A
,
PropertyOp.LogicalNot = 0x0000001B
,
PropertyOp.LogicalAnd = 0x0000001C
,
PropertyOp.DoesNotContain = 0x0000001D
} |