SettingsListOperation 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.
An operation performed on an ISettingsList.
public enum class SettingsListOperation
public enum class SettingsListOperation
enum SettingsListOperation
public enum SettingsListOperation
type SettingsListOperation =
Public Enum SettingsListOperation
- Inheritance
-
SettingsListOperation
Fields
Name | Value | Description |
---|---|---|
AddItem | 0 | An item as been added to the list. The added item is specified by ItemAdded. |
RemoveItem | 1 | An item has been removed from the list. The removed item is specified by ItemsRemoved. |
RemoveMultipleItems | 2 | Multiple items have been removed from the list. The removed items are specified by ItemsRemoved. |
ReplaceItem | 3 | An item has been replaced by a different item. The old item is specifed by ItemsRemoved and its replacement by ItemAdded. |
Clear | 4 | All items have been removed from the list. The removed items are specified by ItemsRemoved. |