CodeClass2.Parts 屬性

取得部分的類別。

命名空間:  EnvDTE80
組件:  EnvDTE80 (在 EnvDTE80.dll 中)

語法

'宣告
ReadOnly Property Parts As CodeElements
    Get
CodeElements Parts { get; }
property CodeElements^ Parts {
    CodeElements^ get ();
}
abstract Parts : CodeElements
function get Parts () : CodeElements

屬性值

型別:EnvDTE.CodeElements
傳回與這個類別關聯的部分類別清單。

注意事項注意事項

在特定類型的編輯之後,程式碼模型項目 (例如類別、結構、函式、屬性、委派等) 的值可能不具決定性,表示其值不一定維持相同。如需詳細資訊,請參閱使用程式碼模型探索程式碼 (Visual Basic) 的<程式碼模型項目值可以變更>一節。

範例

[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);
    }
}

.NET Framework 安全性

請參閱

參考

CodeClass2 介面

EnvDTE80 命名空間

其他資源

HOW TO:編譯和執行 Automation 物件模型程式碼範例

使用程式碼模型探索程式碼 (Visual Basic)

使用程式碼模型探索程式碼 (Visual C#)