Enumeration of possible operations that may happen for a shell control.
| C# | Visual Basic | Visual C++ |
[FlagsAttribute] public enum ShellOperation
<FlagsAttribute> _ Public Enumeration ShellOperation
[FlagsAttribute] public enum class ShellOperation
| Member | Description |
|---|---|
| Copy |
Objects have been copied.
|
| Move |
Objects have been moved.
|
| Drag |
Objects have been dragged from the control.
|
| Drop |
Objects have been dropped on the control.
|
| Cut |
Objects have been cut in the control.
|
| Paste |
Objects have been pasted to the control.
|
| Delete |
Objects have been deleted.
|
| Remove |
Objects have been remvoed from the control, e.g. they have been moved or cut and pasted.
|
| Add |
Objects have been added to the control, e.g. because they ahve been pasted or dropped.
|
| Rename |
An object has been renamed in the control.
|