次の方法で共有


Configurations.Item メソッド

Configurations コレクション内の Configuration オブジェクトを返します。

名前空間:  EnvDTE
アセンブリ:  EnvDTE (EnvDTE.dll 内)

構文

'宣言
Function Item ( _
    index As Object _
) As Configuration
Configuration Item(
    Object index
)
Configuration^ Item(
    [InAttribute] Object^ index
)
abstract Item : 
        index:Object -> Configuration
function Item(
    index : Object
) : Configuration

パラメーター

  • index
    型 : Object

    必須。 返す Configuration オブジェクトのインデックスを指定します。

戻り値

型 : EnvDTE.Configuration
Configuration オブジェクト。

解説

index に渡される値は、Configurations コレクション内の Configuration オブジェクトに対応する整数、またはコレクション内の Configuration オブジェクトの名前です。

public void CodeExample(DTE2 dte, AddIn addin)
{   
    try
    {   // Make sure you have a solution loaded into Visual Studio
        // before running the following example. Make sure the "Any CPU" 
        // option is marked in the Configuration Manager dialog box.
        Configurations configs = null;
        if (dte.Solution.Projects.Count > 0)
        {
            configs = dte.Solution.Projects.Item(1).ConfigurationManager.Platform("Any CPU");
            // Show the configuration name of the first item in 
            // the Configurations collection.
            MessageBox.Show(configs.Item(1).ConfigurationName);
        }
    }
    catch(Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

Configurations インターフェイス

EnvDTE 名前空間

その他の技術情報

方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する