CodeAttribute2.Children プロパティ
このコード コンストラクターに含まれているオブジェクトのコレクションを取得します。
名前空間: EnvDTE80
アセンブリ: EnvDTE80 (EnvDTE80.dll 内)
構文
'宣言
ReadOnly Property Children As CodeElements
CodeElements Children { get; }
property CodeElements^ Children {
CodeElements^ get ();
}
abstract Children : CodeElements with get
function get Children () : CodeElements
プロパティ値
型 : CodeElements
CodeElements コレクションを返します。
解説
オブジェクトに子がない場合は、Nothing または nullnull 参照 (Visual Basic では Nothing) が返されます。
このプロパティは、主に Visual C++ で使用されます。 Children プロパティは、コード要素から返すことができるすべてのオブジェクトを返します。 たとえば、クラスの場合は、メンバー、ベース、実装されたインターフェイス、属性、コメントなどを返します。
名前空間またはタイプ (クラス、構造体、インターフェイスなど) のメンバーを反復処理するには、インターフェイスのサポートの有無を確認するか、CodeElement オブジェクトを CodeNamespace オブジェクトにキャストしてから、Members プロパティを使用する必要があります。
Children プロパティは、このコード要素を通じて参照できる、関連付けられたすべての CodeElement2 オブジェクトのコレクションを返します。 たとえば、CodeClass2 オブジェクトでは、Visual C++ の属性付きプログラミング機能に基づいて提供されたコードやテンプレート パラメーターなどに加えて、クラスのメタデータ コード要素や、Visual C++ の declspec などが含まれます。 CodeFunction2 オブジェクトには、そのすべてのパラメーターや、属性付きプログラミング機能に基づいて提供されたパラメーターなどが含まれます。
オブジェクトや言語によっては、Children プロパティが Nothing または null を返す場合もあります。 Visual Studio でこれをサポートするための要件は特にありません。
例
新しい名前空間および属性を現在のクラスに作成し、属性のプロパティの一部を一覧表示する例を次に示します。
Sub Children2Example(ByVal dte As DTE2)
' Before running this example, open a code page of a project
' and place the insertion point inside a namespace definition.
Try
' Retrieve the CodeNamespace at the insertion point.
Dim sel As TextSelection = _
CType(dte.ActiveDocument.Selection, TextSelection)
Dim spc As CodeNamespace = _
CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementNamespace), CodeNamespace)
' Find the namespace's children.
Dim children As String
Dim elem As CodeElement
For Each elem In spc.Children
children &= elem.Name & vbCrLf
Next
MsgBox(spc.Name & " has the following child code elements:" & _
vbCrLf & vbCrLf & children)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
public void Children2Example(DTE2 dte)
{
// Before running this example, open a code document from a project
// and place the insertion point inside a namespace definition.
try
{
// Retrieve the CodeNamespace at the insertion point.
TextSelection sel =
(TextSelection)dte.ActiveDocument.Selection;
CodeNamespace spc =
(CodeNamespace)sel.ActivePoint.get_CodeElement(
vsCMElement.vsCMElementNamespace);
// Find the namespace's children.
string children = "";
foreach (CodeElement elem in spc.Children)
children += elem.Name + "\r\n";
MessageBox.Show(spc.Name +
" has the following child code elements:" + "\r\n\r\n" +
children);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
その他の技術情報
方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する