Table of Contents

Class JumpListLink

Namespace
Microsoft.WindowsAPICodePack.Taskbar
Assembly
Microsoft.WindowsAPICodePack.Shell.dll

Represents a jump list link object.

public class JumpListLink : JumpListTask, IJumpListItem, IDisposable
Inheritance
JumpListLink
Implements
Inherited Members

Constructors

Initializes a new instance of a JumpListLink with the specified path.

public JumpListLink(string pathValue, string titleValue)

Parameters

pathValue string

The path to the item. The path is required for the JumpList Link

titleValue string

The title for the JumpListLink item. The title is required for the JumpList link.

Properties

Gets or sets the object's arguments (passed to the command line).

public string Arguments { get; set; }

Property Value

string

Gets or sets the icon reference (location and index) of the link's icon.

public IconReference IconReference { get; set; }

Property Value

IconReference

Gets or sets the link's path

public string Path { get; set; }

Property Value

string

Gets or sets the show command of the lauched application.

public WindowShowCommand ShowCommand { get; set; }

Property Value

WindowShowCommand

Gets or sets the link's title

public string Title { get; set; }

Property Value

string

Gets or sets the object's working directory.

public string WorkingDirectory { get; set; }

Property Value

string

Methods

Release the native objects.

public void Dispose()

Release the native and managed objects

protected virtual void Dispose(bool disposing)

Parameters

disposing bool

Indicates that this is being called from Dispose(), rather than the finalizer.

Implement the finalizer.

protected ~JumpListLink()