GroupTaskItem.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 task items.
public:
property System::Collections::IList ^ Items { System::Collections::IList ^ get(); };
public System.Collections.IList Items { get; }
member this.Items : System.Collections.IList
Public ReadOnly Property Items As IList
Property Value
The list of task items.
Examples
The following example adds the current page to the favorites list.
GroupTaskItem group = new GroupTaskItem("MyExpanded", "Recent Tasks", "Task", false);
AddFavorites(group.Items, features);