Objeto JumpListCategory
type
string (opcional) - Uno de los siguientes:tasks
- Los objetos en esta categoría se colocarán en la categoría estándar deTasks
. Puede haber sólo una categoría, y siempre será mostrada en la parte inferior de la Lista Jump.frequent
- Muestra una lista de archivos abiertos frecuentemente por la aplicación, el nombre de la categoría y sus objetos son establecidos por Windows.recent
- Muestra una lista de archivos abiertos recientemente por la aplicación, el nombre de la categoría y sus objetos son establecidos por Windows. Los objetos pueden ser añadidos indirectamente a esta categoría usandoapp.addRecentDocument(path)
.custom
- Muestra las tareas o los enlaces a archivo,name
debe ser establecido por la aplicación.
name
string (opcional) - Debe establecerse sitype
escustom
, de lo contrario debe omitirse.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.