次の方法で共有


Command.Collection プロパティ

Command オブジェクトを含む Commands コレクションを取得します。

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

構文

'宣言
ReadOnly Property Collection As Commands
    Get
Commands Collection { get; }
property Commands^ Collection {
    Commands^ get ();
}
abstract Collection : Commands
function get Collection () : Commands

プロパティ値

型: EnvDTE.Commands
Commands コレクション。

public void CodeExample(DTE2 dte, AddIn addin)
{
    try
    {
        // Show number of commands in Commands collection.
        MessageBox.Show(dte.Commands.Count.ToString());
        // Return the Commands collection for the application.
        Commands cmdsColl = dte.Commands;
        // Return a Command object.
        Command cmdObj = cmdsColl.Item("File.NewFile", cmdsColl.Count);
        // Show the full name of Command object's application object.
        MessageBox.Show(cmdObj.DTE.FullName);
        // Display the Command object's name.
        MessageBox.Show(cmdObj.Name);
        // Display whether the Command object's containing collection
        // is the same as the application object's Commands collection.
        string message;
        if (cmdsColl.Equals(cmdObj.Collection))
            message = "Same collection!";
        else
            message = "Different collection!";
        MessageBox.Show(message);
    }
    catch(Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

.NET Framework セキュリティ

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

参照

参照

Command インターフェイス

EnvDTE 名前空間

その他の技術情報

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