Propiedad FolderItem.GetLink
Contiene el objeto ShellLinkObject del elemento, si el elemento es un acceso directo.
Esta propiedad es de solo lectura.
Sintaxis
objGetLink = FolderItem.GetLink
Valor de propiedad
Variable de tipo IDispatch que recibe el objeto ShellLinkObject .
Ejemplos
En el ejemplo siguiente se usa GetLink para recuperar el objeto ShellLinkObject para un acceso directo a Internet Explorer. Se muestra un uso adecuado para JScript, VBScript y Visual Basic.
Jscript:
<script language="JScript">
function fnGetLinkJ()
{
var objShell = new ActiveXObject("shell.application");
var objFolder2;
var ssfPROGRAMS = 2;
objFolder2 = objShell.NameSpace(ssfPROGRAMS);
if (objFolder2 != null)
{
var objFolderItem;
objFolderItem = objFolder2.ParseName("Internet Explorer.lnk");
if (objFolderItem != null)
{
var objLink;
objLink = objFolderItem.GetLink;
if (objLink != null)
{
// Add code here
}
}
}
}
</script>
Vbscript:
<script language="VBScript">
function fnGetLinkVB()
dim objShell
dim bReturn
set objShell = CreateObject("shell.application")
if (not objShell is nothing) then
dim objFolder2
dim ssfPROGRAMS
ssfPROGRAMS = 2
set objFolder2 = objShell.NameSpace(ssfPROGRAMS)
if (not objFolder2 is nothing) then
dim objFolderItem
set objFolderItem = objFolder2.ParseName("Internet Explorer.lnk")
if (not objFolderItem is nothing) then
dim objLink
set objLink = objFolderItem.GetLink
if (not objLink is nothing) then
'Add code here
end if
set objLink = nothing
end if
set objFolderItem = nothing
end if
set objFolder2 = nothing
end if
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnGetLinkVB()
Dim objShell As Shell
Dim objFolder2 As Folder2
Dim ssfPROGRAMS As Long
ssfPROGRAMS = 2
Set objShell = New Shell
Set objFolder2 = objShell.NameSpace(ssfPROGRAMS)
If (Not objFolder2 Is Nothing) Then
Dim objFolderItem As FolderItem
Set objFolderItem = objFolder2.ParseName("Internet Explorer.lnk")
If (Not objFolderItem Is Nothing) Then
Dim objLink As ShellLinkObject
Set objLink = objFolderItem.GetLink
If (Not objLink Is Nothing) Then
'Add code here
Else
'Folder object returned nothing
End If
Set objLink = Nothing
Else
'FolderItem object returned nothing.
End If
Set objFolderItem = Nothing
Else
'Folder object returned nothing.
End If
Set objFolder2 = Nothing
Set objShell = Nothing
End Sub
Requisitos
Requisito | Value |
---|---|
Cliente mínimo compatible |
Windows 2000 Professional, Windows XP [solo aplicaciones de escritorio] |
Servidor mínimo compatible |
Windows 2000 Server [solo aplicaciones de escritorio] |
Encabezado |
|
IDL |
|
Archivo DLL |
|
Consulte también