다음을 통해 공유


OutputWindowPane.ForceItemsToTaskList 메서드

아직 추가되지 않은 작업 항목을 모두 작업 목록으로 보냅니다.

네임스페이스:  EnvDTE
어셈블리:  EnvDTE(EnvDTE.dll)

구문

‘선언
Sub ForceItemsToTaskList
void ForceItemsToTaskList()
void ForceItemsToTaskList()
abstract ForceItemsToTaskList : unit -> unit
function ForceItemsToTaskList()

예제

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

.NET Framework 보안

참고 항목

참조

OutputWindowPane 인터페이스

EnvDTE 네임스페이스