Méthode | Description | |
---|---|---|
Create ( AutoStart autoStart, |
Creates a new Windows shortcut in the "Startup" menu.
|
|
Create ( QuickLaunch quickLaunch, |
Creates a new Windows shortcut in the quick launch bar.
|
|
Create ( SendTo sendTo, |
Creates a new Windows shortcut in the "Send to" menu.
|
|
Create ( [ desktopIcon, |
Creates a new Windows shortcut on the desktop.
|
|
Create ( [ path, [ targetPath, [ arguments = null, [ iconLocation = null, [ description = null ) : void |
Creates a new Windows shortcut.
|
|
Remove ( AutoStart autoStart, bool machineWide ) : void |
Removes a Windows shortcut from the "Startup" menu.
|
|
Remove ( QuickLaunch quickLaunch ) : void |
Removes a Windows shortcut from the quick launch bar.
|
|
Remove ( SendTo sendTo ) : void |
Removes a Windows shortcut from the "Send to" menu.
|
|
Remove ( [ desktopIcon, bool machineWide ) : void |
Removes a Windows shortcut from the desktop.
|
Méthode | Description | |
---|---|---|
CheckName ( [ name ) : void |
Ensures that the given name can be used as a file name.
|
|
Create ( [ path, |
Creates a new Windows shortcut.
|
|
GetDesktopPath ( [ name, bool machineWide ) : string | ||
GetQuickLaunchPath ( string name ) : string | ||
GetSendToPath ( string name ) : string | ||
GetStartMenuCategoryPath ( [ category, bool machineWide ) : string | ||
GetStartMenuPath ( [ category, [ name, bool machineWide ) : string | ||
GetStartupPath ( string name, bool machineWide ) : string |
public static Create ( AutoStart autoStart, |
||
autoStart | AutoStart | Information about the shortcut to be created. |
target | The target the shortcut shall point to. | |
handler | ITaskHandler | A callback object used when the the user is to be informed about the progress of long-running operations such as downloads. |
machineWide | bool | Create the shortcut machine-wide instead of just for the current user. |
Résultat | void |
public static Create ( QuickLaunch quickLaunch, |
||
quickLaunch | QuickLaunch | Information about the shortcut to be created. |
target | The target the shortcut shall point to. | |
handler | ITaskHandler | A callback object used when the the user is to be informed about the progress of long-running operations such as downloads. |
Résultat | void |
public static Create ( SendTo sendTo, |
||
sendTo | SendTo | Information about the shortcut to be created. |
target | The target the shortcut shall point to. | |
handler | ITaskHandler | A callback object used when the the user is to be informed about the progress of long-running operations such as downloads. |
Résultat | void |
public static Create ( [ desktopIcon, |
||
desktopIcon | [ | Information about the shortcut to be created. |
target | The target the shortcut shall point to. | |
handler | [ | A callback object used when the the user is to be informed about the progress of long-running operations such as downloads. |
machineWide | bool | Create the shortcut machine-wide instead of just for the current user. |
Résultat | void |
public static Create ( [ path, [ targetPath, [ arguments = null, [ iconLocation = null, [ description = null ) : void | ||
path | [ | The location to place the shorcut at. |
targetPath | [ | The target path the shortcut shall point to. |
arguments | [ | Additional arguments to pass to the target; can be |
iconLocation | [ | The path of the icon to use for the shortcut; leave |
description | [ | A short human-readable description; can be |
Résultat | void |
public static Remove ( AutoStart autoStart, bool machineWide ) : void | ||
autoStart | AutoStart | Information about the shortcut to be removed. |
machineWide | bool | The shortcut was created machine-wide instead of just for the current user. |
Résultat | void |
public static Remove ( QuickLaunch quickLaunch ) : void | ||
quickLaunch | QuickLaunch | Information about the shortcut to be removed. |
Résultat | void |
public static Remove ( SendTo sendTo ) : void | ||
sendTo | SendTo | Information about the shortcut to be removed. |
Résultat | void |
public static Remove ( [ desktopIcon, bool machineWide ) : void | ||
desktopIcon | [ | Information about the shortcut to be removed. |
machineWide | bool | The shortcut was created machine-wide instead of just for the current user. |
Résultat | void |