CodeClass2.IsCodeType プロパティ
コード クラスから CodeType オブジェクトを取得できるかどうかを示す値を取得します。
名前空間: EnvDTE80
アセンブリ: EnvDTE80 (EnvDTE80.dll 内)
構文
'宣言
ReadOnly Property IsCodeType As Boolean
Get
bool IsCodeType { get; }
property bool IsCodeType {
bool get ();
}
abstract IsCodeType : bool
function get IsCodeType () : boolean
プロパティ値
型: System.Boolean
ブール値。CodeType オブジェクトを取得できる場合は true。それ以外の場合は false。
実装
解説
IsCodeType は、コード クラスがコード型かどうかを返します。 その場合は、インターフェイスを照会 (QI) したり CodeType オブジェクトにキャストしたりできます。 Kind が、vsCMElementClass、vsCMElementInterface、vsCMElementDelegate、vsCMElementStruct、または vsCMElementEnum の場合がこれに当たります。
注意
特定の種類の編集を行うと、クラス、構造体、関数、属性、デリゲートなどのコード モデル要素が非確定的な値になる場合があります。つまり、これらの要素の値は、常に同じ値になるとは限りません。 詳細については、「コード モデルを使用したコードの調査 (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 セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
参照
その他の技術情報
方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する