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
| Clear | 4 | Clear the contents of the array |
| Pop | 1 | Pop the item off the end of the array |
| Push | 0 | Push item onto the end of the array |
| Remove | 3 | Remove the item from the array, regardless of it's location |
| Take | 2 | Take an item from the front of the array |