CodeClass2.IsCodeType 屬性

取得值,指出是否可以從這個程式碼類別取得 CodeType 物件。

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

語法

'宣告
ReadOnly Property IsCodeType As Boolean
bool IsCodeType { get; }
property bool IsCodeType {
    bool get ();
}
abstract IsCodeType : bool
function get IsCodeType () : boolean

屬性值

型別:System.Boolean
布林值,如果可以取得 CodeType 物件,則為 true,否則傳回 false。

備註

IsCodeType 傳回該程式碼類別是否為程式碼型別。如果是的話,則可以查詢介面 (QI) 或將它轉型為 CodeType 物件。當 KindvsCMElementClassvsCMElementInterfacevsCMElementDelegatevsCMElementStructvsCMElementEnum 時,這就為「真」。

注意事項注意事項

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

範例

[C#]

public void CodeClass2IsCodeTypeExample(DTE2 dte2)
{
    // Before running this example, open a code document from a project
    // and place the insertion point within a class definition.
    try
    {   // Get the CodeClass2 at the insertion point.
        TextSelection sel = 
        (TextSelection)dte2.ActiveDocument.Selection;
        CodeClass2 cls = (CodeClass2)sel.ActivePoint.get_CodeElement(
            vsCMElement.vsCMElementClass);

        // Test if element is a code type.
        if (cls.IsCodeType)
        {
            MessageBox.Show("Element is a code type");
            // Test if element is a class.
            if (cls.Kind == vsCMElement.vsCMElementClass)
                MessageBox.Show("This element is a class");
        }
    }
    catch (Exception e)
    {
        Console.WriteLine(e.Message);
    }
}

.NET Framework 安全性

請參閱

參考

CodeClass2 介面

IsCodeType 多載

EnvDTE80 命名空間

其他資源

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

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

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