C# Класс ZeroInstall.Hooking.WindowsTaskbar.ShellLink

Represents a shell link targeting a file.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Arguments string
IconIndex int
IconPath string
Path string
Title string

Открытые методы

Метод Описание
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

Описание методов

ShellLink() публичный Метод

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.
Результат System

ShellLink() публичный Метод

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 .
Результат System

Описание свойств

Arguments публичное свойство

Additional arguments for Title; can be null.
public string Arguments
Результат string

IconIndex публичное свойство

The resouce index within the file specified by IconPath.
public int IconIndex
Результат int

IconPath публичное свойство

The path of the icon for the link.
public string IconPath
Результат string

Path публичное свойство

The target path the link shall point to.
public string Path
Результат string

Title публичное свойство

The title/name of the task link.
public string Title
Результат string