ToolWindows.DTE プロパティ
トップレベルの機能拡張オブジェクトを取得します。
名前空間: EnvDTE80
アセンブリ: EnvDTE80 (EnvDTE80.dll 内)
構文
'宣言
ReadOnly Property DTE As DTE
Get
DTE DTE { get; }
property DTE^ DTE {
DTE^ get ();
}
abstract DTE : DTE
function get DTE () : DTE
プロパティ値
型: EnvDTE.DTE
DTE オブジェクト。
解説
Visual Studio では、DTE オブジェクトがオートメーション モデルのルート オブジェクトです。他のオブジェクト モデルでは、多くの場合、"アプリケーション" と呼ばれます。
例
この例は、TollWindows オブジェクトを通じて、親 DTE オブジェクトに到達する方法を示しています。 このアドインの例を実行する方法の詳細については、「方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する」を参照してください。
Imports EnvDTE
Imports EnvDTE80
Public Sub OnConnection(ByVal application As Object, _
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
CommandWindowManip(_applicationObject)
End Sub
Public Sub CommandWindowManip(ByVal dte As DTE2)
Dim myCmd As CommandWindow
myCmd = _applicationObject.ToolWindows.CommandWindow
MsgBox("The command count, obtained through the parent DTE object _
, is : " & myCmd.DTE.Commands.Count)
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
CommandWindowManip(_applicationObject);
}
public void CommandWindowManip (DTE2 dte)
{
CommandWindow myCmd;
myCmd = _applicationObject.ToolWindows.CommandWindow;
MessageBox.Show("The command count, obtained through the parent
DTE object, is : " + myCmd.DTE.Commands.Count);
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。