[This is preliminary documentation and is subject to change.]
Describes acction on collection
Namespace: Tools.CollectionsT.GenericTAssembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public enum CollectionChangeAction |
| Visual Basic |
|---|
Public Enumeration CollectionChangeAction |
| Visual C++ |
|---|
public enum class CollectionChangeAction |
| F# |
|---|
type CollectionChangeAction |
| JScript |
|---|
public enum CollectionChangeAction |
Members
| Member name | Value | Description | |
|---|---|---|---|
| Add | 1 | An item was added. Equals to Add. Represents Added. | |
| Remove | 2 | An item was removed. Equals to Remove. Represents Removed | |
| Clear | 4 | The collection was cleared. Represents Cleared. | |
| Replace | 5 | Item of collection was replaced. Represents ItemChanged. | |
| ItemChange | 6 | Property of item of collection changed. Represents ItemValueChanged. | |
| Other | 3 | Unspecified action. Equals to Refresh. | |
| IsFlags | Gets value indicating if given value is of enum type which has FlagsAttribute applied | ||
| GetName | Gets name of given enumeration value | ||
| GetConstant | Gets constant field that represents given enum value | ||
| GetValue | Gets value of enum in its unedlying type | ||
| IsDefined | Gets value idicating if given value is defined as constant in enumeration |