EditArray.ArrayChangeType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Possibles array change actions type.
public enum EditArray.ArrayChangeType
type EditArray.ArrayChangeType =
Public Enum EditArray.ArrayChangeType
- Inheritance
-
EditArray.ArrayChangeType
Fields
Name | Value | Description |
---|---|---|
Push | 0 | Push item onto the end of the array |
Pop | 1 | Pop the item off the end of the array |
Take | 2 | Take an item from the front of the array |
Remove | 3 | Remove the item from the array, regardless of it's location. Searches starting at the front of the array and stops when the first matching item is found. |
Clear | 4 | Clear the contents of the array |