JumpListCategory オブジェクト
type
string (任意) - 以下のいずれかです。tasks
- このカテゴリの項目は、標準のタスク
カテゴリに配置されます。 このようなカテゴリが1つだけあると、ジャンプリストの下部に常に表示されます。frequent
- アプリによってよく開くファイルの一覧が表示されます。カテゴリの名前と項目はWindowsによって設定されます。recent
- アプリによって最近開いたファイルの一覧が表示されます。カテゴリの名前と項目はWindowsによって設定されます。app.addRecentDocument(path)
を使用すると、このカテゴリへ項目が間接的に追加されることがあります。custom
- タスクやファイルのリンクを表示します。name
は必ずアプリによって設定されなければなりません。
name
string (任意) -type
がcustom
の場合は必ず設定し、それ以外は省略しなければなりません。items
JumpListItem[] (optional) - Array of JumpListItem objects iftype
istasks
orcustom
, otherwise it should be omitted.
[!NOTE] If a
JumpListCategory
object has neither thetype
nor thename
property set then itstype
is assumed to betasks
. If thename
property is set but thetype
property is omitted then thetype
is assumed to becustom
.
[!NOTE] The maximum length of a Jump List item's
description
property is 260 characters. Beyond this limit, the item will not be added to the Jump List, nor will it be displayed.