JumpListItem

external interface JumpListItem(source)

Properties

Link copied to clipboard
abstract var args: String?

The command line arguments when program is executed. Should only be set if type is task.

Link copied to clipboard
abstract var description: String?

Description of the task (displayed in a tooltip). Should only be set if type is task. Maximum length 260 characters.

Link copied to clipboard
abstract var iconIndex: Double?

The index of the icon in the resource file. If a resource file contains multiple icons this value can be used to specify the zero-based index of the icon that should be displayed for this task. If a resource file contains only one icon, this property should be set to zero.

Link copied to clipboard
abstract var iconPath: String?

The absolute path to an icon to be displayed in a Jump List, which can be an arbitrary resource file that contains an icon (e.g. .ico, .exe, .dll). You can usually specify process.execPath to show the program icon.

Link copied to clipboard
abstract var path: String?

Path of the file to open, should only be set if type is file.

Link copied to clipboard
abstract var program: String?

Path of the program to execute, usually you should specify process.execPath which opens the current program. Should only be set if type is task.

Link copied to clipboard
abstract var title: String?

The text to be displayed for the item in the Jump List. Should only be set if type is task.

Link copied to clipboard
abstract var type: JumpListItemType?

One of the following:

Link copied to clipboard
abstract var workingDirectory: String?

The working directory. Default is empty.