C# Class ZeroInstall.Hooking.WindowsTaskbar.ShellLink

Represents a shell link targeting a file.
Show file Open project: 0install/0install-win

Public Properties

Property Type Description
Arguments string
IconIndex int
IconPath string
Path string
Title string

Public Methods

Method Description
ShellLink ( string title, string path, string arguments = null ) : System

Creates a new shell link structure.

ShellLink ( string title, string path, string arguments, string iconPath, int iconIndex ) : System

Creates a new shell link structure

Method Details

ShellLink() public method

Creates a new shell link structure.
public ShellLink ( string title, string path, string arguments = null ) : System
title string The title/name of the task link.
path string The target path the link shall point to and to get the icon from.
arguments string Additional arguments for ; can be null.
return System

ShellLink() public method

Creates a new shell link structure
public ShellLink ( string title, string path, string arguments, string iconPath, int iconIndex ) : System
title string The title/name of the task link.
path string The target path the link shall point to.
arguments string Additional arguments for ; can be null.
iconPath string The path of the icon for the link.
iconIndex int The resouce index within the file specified by .
return System

Property Details

Arguments public property

Additional arguments for Title; can be null.
public string Arguments
return string

IconIndex public property

The resouce index within the file specified by IconPath.
public int IconIndex
return int

IconPath public property

The path of the icon for the link.
public string IconPath
return string

Path public property

The target path the link shall point to.
public string Path
return string

Title public property

The title/name of the task link.
public string Title
return string