Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the list of verbs common to all the folder items.
This property is read-only.
Syntax
Verbs = FolderItems3.Verbs
Property value
Address of a pointer to the collection of verbs. See FolderItemVerbs.
Examples
The following example shows the proper usage of Verbs for JScript, VBScript, and Visual Basic.
JScript:
<script language="JScript">
function fnFolderItems3VerbsJ()
{
var objShell = new ActiveXObject("shell.application");
var objFolder;
var ssfWINDOWS = 17;
objFolder = objShell.NameSpace(ssfWINDOWS);
if (objFolder != null)
{
var objFolderItems3;
objFolderItems3 = objFolder.Items();
if (objFolderItems3 != null)
{
var objFolderItemVerbs;
objFolderItemVerbs = objFolderItems3.Verbs;
alert(objFolderItemVerbs.Item(0));
}
}
}
</script>
VBScript:
<script language="VBScript">
function fnFolderItems3VerbsVB()
dim objShell
set objShell = CreateObject("shell.application")
if (not objShell is nothing) then
dim objFolder
dim ssfDRIVES
ssfWINDOWS = 17
set objFolder = objShell.NameSpace(ssfWINDOWS)
if (not objFolder is nothing) then
dim objFolderItems3
set objFolderItems3 = objFolder.Items()
if (not objFolderItems3 is nothing) then
dim objFolderItemVerbs
set objFolderItemVerbs = objFolderItems3.Verbs
if (not objFolderItemVerbs is nothing) then
alert(objFolderItemVerbs.Item(0))
end if
set objFolderItemVerbs = nothing
end if
set objFolderItems3 = nothing
end if
set objFolder = nothing
end if
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnFolderItems3VerbsVB()
Dim objShell As Shell
Dim objFolder As Folder
Dim ssfWINDOWS As Long
ssfWINDOWS = 36
Set objShell = New Shell
Set objFolder = objShell.NameSpace(ssfWINDOWS)
If (Not objFolder Is Nothing) Then
Dim objFolderItems3 As FolderItems3
Set objFolderItems3 = objFolder.Items
If (Not objFolderItems3 Is Nothing) Then
Dim objFolderItemVerbs As FolderItemVerbs
Set objFolderItemVerbs = objFolderItems3.Verbs
If (Not objFolderItemVerbs Is Nothing) Then
Debug.Print objFolderItemVerbs.Item(0)
End If
Set objFolderItemVerbs = Nothing
End If
Set objFolderItems3 = Nothing
End If
Set objFolder = Nothing
Set objShell = Nothing
End Sub
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows XP [desktop apps only] |
Minimum supported server |
Windows Server 2003 [desktop apps only] |
Header |
|
IDL |
|
DLL |
|