TaskItems Interface
Visual Studio 2015
The TaskItems collection contains all of the tasks in the Task List window.
Assembly: EnvDTE (in EnvDTE.dll)
| Name | Description | |
|---|---|---|
![]() | Add(String^, String^, String^, vsTaskPriority, Object^, Boolean, String^, Int32, Boolean, Boolean) | Adds a new task item to the TaskList. |
![]() | ForceItemsToTaskList() | Sends all task items not yet added to the task list. |
![]() | GetEnumerator() | Gets an enumeration for items in a collection. |
![]() | Item(Object^) | Returns a TaskItem object in a TaskItems collection. |
Sub TaskItemsCollectionExample() Dim win As Window = DTE.Windows.Item(Constants.vsWindowKindTaskList) Dim TL As TaskList = win.Object Dim TLItem As TaskItem ' Add a couple of tasks to the Task List. TLItem = TL.TaskItems.Add(" ", " ", "Test task 1.", vsTaskPriority.vsTaskPriorityHigh, vsTaskIcon.vsTaskIconUser, True, , 10, , ) TLItem = TL.TaskItems.Add(" ", " ", "Test task 2.", vsTaskPriority.vsTaskPriorityLow, vsTaskIcon.vsTaskIconComment, , 20, , ) ' List the total number of task list items after adding the new ' task items. MsgBox("Task Item 1 description: " & TL.TaskItems.Item(2).Description) MsgBox("Total number of task items: " & TL.TaskItems.Count) ' Remove the second task item. The items list in reverse numeric order. MsgBox("Deleting the second task item") TL.TaskItems.Item(1).Delete() MsgBox("Total number of task items: " & TL.TaskItems.Count) End Sub
Show:

