Udostępnij za pośrednictwem


Właściwość AddIn.Description —

Zwraca lub ustawia ciąg, który reprezentuje opis dla AddIn obiektu.

Przestrzeń nazw:  EnvDTE
Zestaw:  EnvDTE (w EnvDTE.dll)

Składnia

'Deklaracja
Default Property Description As String
string this { get; set; }
property String^ default {
    String^ get ();
    void set (String^ value);
}
abstract Description : string with get, set
function get Description () : String 
function set Description (value : String)

Wartość właściwości

Typ: String
Ciąg, który reprezentuje opis dla AddIn obiektu.

Przykłady

Sub DescriptionExample(ByVal dte As DTE2)

    ' Display all add-ins.
    Dim addIn As AddIn
    Dim msg As String

    For Each addIn In dte.AddIns
        msg &= "    " & addIn.Name

        If addIn.Description <> "" Then
            msg &= ": " & addIn.Description & vbCrLf
        Else
            msg &= ": (No description)" & vbCrLf
        End If
    Next

    MsgBox("Available add-ins:" & vbCrLf & vbCrLf & msg)

End Sub
public void DescriptionExample(DTE2 dte)
{
    // Display all add-ins.
    string msg = "";

    foreach (AddIn addIn in dte.AddIns)
    {
        msg += "    " + addIn.Name;

        if (addIn.Description != "")
            msg += ": " + addIn.Description + "\n";
        else
            msg += ": (No description)\n";
    }

    MessageBox.Show("Available add-ins:\n\n" + msg);
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

AddIn Interfejs

Przestrzeń nazw EnvDTE

Inne zasoby

Porady: kompilowanie i uruchamianie kodu modelu obiektów automatyzacji — przykłady