ItemVerbs Enumeration
A verb is a string used to specify a particular action that an item supports.
Invoking a verb is equivalent to selecting a command from an item's context menu.
Typically, invoking a verb launches a related application.
For example, invoking the "open" verb on a ".txt" file opens the file with a text editor, usually Notepad.
Namespace: DevCase.Core.IO.FileSystemAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
Public Enumeration ItemVerbs
Dim instance As ItemVerbs
public enum class ItemVerbs
No code example is currently available or this language may not be supported.
Open |
0 |
Opens an item.
This is usually the default verb.
|
OpenAs |
1 |
Opens dialog when no program is associated to the file-extension.
|
Edit |
2 |
Opens the default text editor on the item.
|
Explore |
3 |
Opens the Windows Explorer in the item Folder.
|
Properties |
4 |
Opens the properties window of the item.
|
Find |
5 |
Starts a search.
|
Print |
6 |
Start printing the file with the default application.
|
RunAs |
7 |
Opens the run UAC dialog in the file.
|
Copy |
8 |
Copies the item.
|
Cut |
9 |
Cuts the item.
|
Paste |
10 |
Pastes the item.
|
Delete |
11 |
Deletes an item.
If the Item is inside the recycle bin, it will be permanently deleted.
|
Undelete |
12 |
Undeletes an item from the recycle bin.
|