Udostępnij za pośrednictwem


Właściwość CodeClass2.Parts —

Pobiera części klasy.

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

Składnia

'Deklaracja
ReadOnly Property Parts As CodeElements
CodeElements Parts { get; }
property CodeElements^ Parts {
    CodeElements^ get ();
}
abstract Parts : CodeElements with get
function get Parts () : CodeElements

Wartość właściwości

Typ: CodeElements
Zwraca listę częściowe klas skojarzonych z tej klasy.

[!UWAGA]

Wartości elementów modelu kodu, takich jak klasy, strukturach, funkcje, atrybuty, delegatów i tak dalej mogą być deterministyczny po dokonaniu niektórych rodzajów modyfikacji, co oznacza, że ich wartości nie mogą być powoływane do zawsze pozostają takie same.Aby uzyskać więcej informacji, zobacz sekcję wartości elementu modelu kod można zmienić w Odnajdowanie kodu za pomocą modelu kodu (Visual Basic).

Przykłady

[Visual Basic]

Sub PartsExample()
    ' Before running this example, open a code document from a project
    ' and place the insertion point inside a class definition.
    Try
        ' Retrieve the CodeClass at the insertion point.
        Dim sel As TextSelection = _
            CType(DTE.ActiveDocument.Selection, TextSelection)
        Dim cls As CodeClass2 = _
            CType(sel.ActivePoint.CodeElement( _
            vsCMElement.vsCMElementClass), CodeClass2)

        ' Enumerate the CodeClass's parts.
        Dim parts As String = ""
        Dim elem As CodeElement2
        For Each elem In cls.Parts
            parts &= elem.FullName & vbCrLf
        Next

        MsgBox(cls.Name & " has the following parts:" & _
            vbCrLf & vbCrLf & parts)
    Catch ex As System.Exception
        MsgBox(ex.ToString)
    End Try
End Sub

[C#]

public void PartsExample(DTE2 dte)
{
    // Before running this example, open a code document from a project
    // and place the insertion point inside a class definition.
    try
    {
        // Retrieve the CodeClass at the insertion point.
        TextSelection sel = 
            (TextSelection)dte.ActiveDocument.Selection;
        CodeClass2 cls = 
            (CodeClass)sel.ActivePoint.get_CodeElement2(
            vsCMElement.vsCMElementClass);

        // Enumerate the CodeClass's parts.
        string parts = "";
        foreach (CodeElement2 elem in cls.Parts)
        {
        parts += elem.FullName + Environment.NewLine;
        }

        MessageBox.Show(cls.Name + " has the following parts:" + 
            Environment.NewLine + Environment.NewLine + parts);
    }
    catch (System.Exception ex)
    {
        MessageBox.Show(Ex.Message);
    }
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

CodeClass2 Interfejs

Przestrzeń nazw EnvDTE80

Inne zasoby

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

Odnajdowanie kodu za pomocą modelu kodu (Visual Basic)

Odnajdowanie kodu za pomocą modelu kodu (Visual C#)