JumpList.Items Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.