Método OutputWindowPane.OutputTaskItemString

Exibe uma seqüência de caracteres de saída janela e adiciona um item correspondente para o Lista de tarefas.

Namespace:  EnvDTE
Assembly:  EnvDTE (em EnvDTE.dll)

Sintaxe

'Declaração
Sub OutputTaskItemString ( _
    Text As String, _
    Priority As vsTaskPriority, _
    SubCategory As String, _
    Icon As vsTaskIcon, _
    FileName As String, _
    Line As Integer, _
    Description As String, _
    Force As Boolean _
)
void OutputTaskItemString(
    string Text,
    vsTaskPriority Priority,
    string SubCategory,
    vsTaskIcon Icon,
    string FileName,
    int Line,
    string Description,
    bool Force
)
void OutputTaskItemString(
    [InAttribute] String^ Text, 
    [InAttribute] vsTaskPriority Priority, 
    [InAttribute] String^ SubCategory, 
    [InAttribute] vsTaskIcon Icon, 
    [InAttribute] String^ FileName, 
    [InAttribute] int Line, 
    [InAttribute] String^ Description, 
    [InAttribute] bool Force
)
abstract OutputTaskItemString : 
        Text:string * 
        Priority:vsTaskPriority * 
        SubCategory:string * 
        Icon:vsTaskIcon * 
        FileName:string * 
        Line:int * 
        Description:string * 
        Force:bool -> unit 
function OutputTaskItemString(
    Text : String, 
    Priority : vsTaskPriority, 
    SubCategory : String, 
    Icon : vsTaskIcon, 
    FileName : String, 
    Line : int, 
    Description : String, 
    Force : boolean
)

Parâmetros

  • Text
    Tipo: System.String
    Obrigatório.O texto para adicionar o saída janela.
  • SubCategory
    Tipo: System.String
    Obrigatório.A subcategoria para usar o novo item de tarefa.
  • FileName
    Tipo: System.String
    Obrigatório.O nome de arquivo para associar o novo item de tarefa.Pode ser uma seqüência vazia.
  • Line
    Tipo: System.Int32
    Obrigatório.A linha de código para o qual o novo item de tarefa relacionada.
  • Description
    Tipo: System.String
    Obrigatório.A descrição do novo item de tarefa.
  • Force
    Tipo: System.Boolean
    Opcional.Indica se a saída janela deve atualizar imediatamente a Lista de tarefas.O valor padrão é True.Se você estiver adicionando vários itens, defina a força Falsee em seguida, defina a força True no último item.

Comentários

Para números de linha aparecem no Lista de tarefas, deve especificar o caminho completo na FileName parâmetro. (Por exemplo, c:\workfile.txt.) O arquivo deve existir nesse local. A razão disso é que o saída janela verifica para certificar-se de que o arquivo especificado existe antes de exibir os números de linha.

Exemplos

Sub OutputTaskItemStringExample()
   ' 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

Segurança do .NET Framework

Consulte também

Referência

OutputWindowPane Interface

Namespace EnvDTE