Version 3.3.0.2

CollectionChangeType enum

Namespace: Sirenix.OdinInspector.Editor
Assembly: Sirenix.OdinInspector.Editor
public enum CollectionChangeType
Specifies the kinds of changes that can occur to collections.

Values

Add
The change is adding a value to the collection. Value and SelectionIndex will be set.
Clear
The change is clearing the collection. SelectionIndex will be set.
Insert
The change is inserting a value into the collection. Index, Value and SelectionIndex will be set.
RemoveIndex
The change is removing a value at an index from the collection. Index and SelectionIndex will be set.
RemoveKey
The change is removing a key from the collection. Key and SelectionIndex will be set.
RemoveValue
The change is removing a value from the collection. Value and SelectionIndex will be set.
SetKey
The change is setting the value of a key in the collection. Key, Value and SelectionIndex will be set.
Unspecified
Unknown collection change, the change was not specified by the invoking code.