[This is preliminary documentation and is subject to change.]

Describes acction on collection

Namespace: Tools.CollectionsT.GenericT
Assembly: 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 nameValueDescription
Add1An item was added. Equals to Add. Represents Added.
Remove2An item was removed. Equals to Remove. Represents Removed
Clear4The collection was cleared. Represents Cleared.
Replace5Item of collection was replaced. Represents ItemChanged.
ItemChange6Property of item of collection changed. Represents ItemValueChanged.
Other3Unspecified action. Equals to Refresh.
IsFlagsGets value indicating if given value is of enum type which has FlagsAttribute applied
GetNameGets name of given enumeration value
GetConstantGets constant field that represents given enum value
GetValueGets value of enum in its unedlying type
IsDefinedGets value idicating if given value is defined as constant in enumeration

See Also