JumpList.Items Property

Definition

Gets the list of JumpListItem's for the jump list. Items is of type IVector(JumpListItem).

public:
 property IVector<JumpListItem ^> ^ Items { IVector<JumpListItem ^> ^ get(); };
IVector<JumpListItem> Items();
public IList<JumpListItem> Items { get; }
var iVector = jumpList.items;
Public ReadOnly Property Items As IList(Of JumpListItem)

Property Value

The list of JumpListItem's for the jump list.

Remarks

Apps may modify the collection by adding items, removing items, or modifying existing items. After the app saves the jump list using SaveAsync, the changes to the collection will be reflected in the jump list shown to the user.

Applies to