Share via


OutputGroup.CanonicalName-Eigenschaft

Ruft den eindeutigen Namen ab, der für diese Ausgabegruppe verwendet wird.

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

Syntax

'Declaration
ReadOnly Property CanonicalName As String
string CanonicalName { get; }
property String^ CanonicalName {
    String^ get ();
}
abstract CanonicalName : string
function get CanonicalName () : String

Eigenschaftswert

Typ: System.String
Eine Zeichenfolge, die den für die Ausgabegruppe verwendeten Namen darstellt.

Beispiele

Sub CanonicalNameExample(ByVal dte As DTE2)

    ' Before running this example, open a project.

    ' Display the output groups of the first project.
    Dim proj As Project = dte.Solution.Item(1)
    Dim con As Configuration = _
        proj.ConfigurationManager.ActiveConfiguration
    Dim names As String = ""
    Dim og As OutputGroup
    For Each og In con.OutputGroups
        names &= og.CanonicalName & vbCrLf
    Next

    MsgBox(proj.Name & "'s " & con.ConfigurationName & _
        " output groups:" & vbCrLf & vbCrLf & names)

End Sub
public void CanonicalNameExample(DTE2 dte)
{
    // Before running this example, open a project.

    // Display the output groups of the first project.
    Project proj = dte.Solution.Item(1);
    Configuration con = proj.ConfigurationManager.ActiveConfiguration;
    string names = "";
    foreach (OutputGroup og in con.OutputGroups)
    {
        names += og.CanonicalName + Environment.NewLine;
    }

    MessageBox.Show(proj.Name + "'s " + con.ConfigurationName + 
        " output groups:" + Environment.NewLine + Environment.NewLine + 
        names);
}

.NET Framework-Sicherheit

Siehe auch

Referenz

OutputGroup Schnittstelle

EnvDTE-Namespace

Weitere Ressourcen

Gewusst wie: Kompilieren und Ausführen der Codebeispiele für das Automatisierungsobjektmodell