OutputGroups.Item メソッド
更新 : 2007 年 11 月
OutputGroups コレクション内の OutputGroup オブジェクトを返します。
名前空間 : EnvDTE
アセンブリ : EnvDTE (EnvDTE.dll 内)
構文
'宣言
Function Item ( _
index As Object _
) As OutputGroup
'使用
Dim instance As OutputGroups
Dim index As Object
Dim returnValue As OutputGroup
returnValue = instance(index)
OutputGroup Item(
Object index
)
OutputGroup^ Item(
[InAttribute] Object^ index
)
function Item(
index : Object
) : OutputGroup
パラメータ
- index
型 : System.Object
戻り値
OutputGroup オブジェクト。
解説
Index に渡される値は、OutputGroups コレクション内の OutputGroup オブジェクトへのインデックスである整数、またはコレクション内の OutputGroup オブジェクトの名前を表す文字列値です。
Item メソッドは、コレクションがインデックス値に対応するオブジェクトを見つけられない場合に ArgumentException 例外をスローします。
例
public void CodeExample(DTE2 dte)
{
try
{
// Open a project before running this example.
Project proj = dte.Solution.Projects.Item(1);
OutputGroups groups = proj.ConfigurationManager.ActiveConfiguration.OutputGroups;
int c = 1;
int x = 0;
string msg;
// Find the last outputgroup with at least one file.
foreach (OutputGroup grp in groups)
{
x++;
if (grp.FileCount > 0)
c = x;
}
OutputGroup group = groups.Item(c);
msg = "The " + c + "/" + groups.Count + " item in the OutputGroups groups collection is " +
group.DisplayName;
msg += "\nThe parent of the collection is the Configuration: " + groups.Parent.ConfigurationName;
msg += "\nThe application containing this collection is: " + groups.DTE.Name;
MessageBox.Show(msg);
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。