Window.LinkedWindowFrame プロパティ
ウィンドウが含まれているウィンドウの枠を表す Window オブジェクトを取得します。
名前空間: EnvDTE
アセンブリ: EnvDTE (EnvDTE.dll 内)
構文
'宣言
ReadOnly Property LinkedWindowFrame As Window
Window LinkedWindowFrame { get; }
property Window^ LinkedWindowFrame {
Window^ get ();
}
abstract LinkedWindowFrame : Window
function get LinkedWindowFrame () : Window
プロパティ値
型 : EnvDTE.Window
Window オブジェクト。
解説
ウィンドウがメイン ウィンドウにドッキングされている場合は、LinkedWindowFrame がメイン環境ウィンドウと同じオブジェクトであることに注意してください。
ウィンドウがリンクされていない場合、種類が LinkedWindowFrame の場合、非表示になっている場合、またはドキュメント ウィンドウの場合には、LinkedWindowFrame は Nothing を返します。非表示のウィンドウはウィンドウ枠の中にないため、リンクされているとは見なされません。
例
[Visual Basic]
Sub LinkedWindowFrameExample()
Dim Frame As Window
Dim w1 As Window = _
DTE.Windows.Item(Constants.vsWindowKindSolutionExplorer)
Dim w2 As Window = DTE.Windows.Item(Constants.vsWindowKindOutput)
' Create a linked window frame and dock Solution Explorer
' and the Ouput window together inside it.
Frame = DTE.Windows.CreateLinkedWindowFrame(w1, w2, _
vsLinkedWindowType.vsLinkedWindowTypeDocked)
Frame.LinkedWindows.Item(1).LinkedWindowFrame.Activate()
End Sub
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。