ShellOperation Enumeration |
Enumeration of possible operations that may happen for a shell control.
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Winforms (in ShellBrowser.Winforms.dll) Version: 6.3.1
Syntax [FlagsAttribute]
public enum ShellOperation
<FlagsAttribute>
Public Enumeration ShellOperation
[FlagsAttribute]
public enum class ShellOperation
[<FlagsAttribute>]
type ShellOperation
Members
| Member name | Value | Description |
---|
| Copy | 1 |
Objects have been copied.
|
| Move | 2 |
Objects have been moved.
|
| Drag | 4 |
Objects have been dragged from the control.
|
| Drop | 8 |
Objects have been dropped on the control.
|
| Cut | 16 |
Objects have been cut in the control.
|
| Paste | 32 |
Objects have been pasted to the control.
|
| Delete | 64 |
Objects have been deleted.
|
| Remove | 128 |
Objects have been remvoed from the control, e.g. they have been moved or cut and pasted.
|
| Add | 256 |
Objects have been added to the control, e.g. because they have been pasted or dropped.
|
| Rename | 512 |
An object has been renamed in the control.
|
See Also