Share via


EditArray.ArrayChangeType Enum

Definition

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. Searches starting at the front of the array and stops when the first matching item is found.

Take 2

Take an item from the front of the array

Applies to