OutputWindowPane.ForceItemsToTaskList Method
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.
Sends all task items not yet added to the task list.
public:
void ForceItemsToTaskList();
public:
void ForceItemsToTaskList();
void ForceItemsToTaskList();
[System.Runtime.InteropServices.DispId(6)]
public void ForceItemsToTaskList ();
[<System.Runtime.InteropServices.DispId(6)>]
abstract member ForceItemsToTaskList : unit -> unit
Public Sub ForceItemsToTaskList ()
- Attributes
Examples
Sub ForceItemsToTaskListExample()
' Create a tool window handle for the Output window.
Dim win As Window = DTE.Windows.Item(EnvDTE.Constants.vsWindowKindOutput)
' Create handles to the Output window and its panes.
Dim OW As OutputWindow = win.Object
Dim OWp As OutputWindowPane
' Add a new pane to the Output window.
OWp = OW.OutputWindowPanes.Add("A New Pane")
' Add a line of text to the new pane and to the Task List.
OWp.OutputTaskItemString("Some task", vsTaskPriority.vsTaskPriorityHigh, vsTaskCategories.vsTaskCategoryMisc, vsTaskIcon.vsTaskIconComment, "C:\temp", 100, "Some description")
' You can also use the 'True' flag on the end of OutputTaskItemString
' rather than using the next line (ForceItemsToTaskList).
OWp.ForceItemsToTaskList()
End Sub