Condividi tramite


Interfaccia Command

Aggiornamento: novembre 2007

Rappresenta un comando nell'ambiente.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

<GuidAttribute("5FE10FB0-91A1-4E55-BAAA-ECCAE5CCEB94")> _
Public Interface Command

Dim instance As Command
[GuidAttribute("5FE10FB0-91A1-4E55-BAAA-ECCAE5CCEB94")]
public interface Command
[GuidAttribute(L"5FE10FB0-91A1-4E55-BAAA-ECCAE5CCEB94")]
public interface class Command
public interface Command

Note

Fare riferimento a questo oggetto utilizzando Item.

È possibile fare riferimento a questo oggetto in vari modi, ad esempio utilizzando il nome canonico o l'ID GUID. Il modo più semplice per richiamare la maggior parte dei comandi è mediante ExecuteCommand. È possibile utilizzare Raise nei rari casi in cui è necessario richiamare un comando senza utilizzarne il nome.

Esempi

' Macro code.
Sub CommandExample()
  ' Creates a text document listing all command names.
  Dim Cmd As Command
  Dim Doc As Document
  Dim TxtDoc As TextDocument

  ' Create a new text document.
  DTE.ItemOperations.NewFile ("General\Text File")
  Set Doc = ActiveDocument
  Set TxtDoc = Doc.Object("TextDocument")
  For Each Cmd In Commands
  If (Cmd.Name <> "") Then
    TxtDoc.Selection.Text = Cmd.Name & vbLF
    TxtDoc.Selection.Collapse
  End If
  Next
End Sub

Vedere anche

Riferimenti

Membri Command

Spazio dei nomi EnvDTE