Window2.WindowState プロパティ
ウィンドウの状態 (最小化、通常など) を取得または設定します。
名前空間: EnvDTE80
アセンブリ: EnvDTE80 (EnvDTE80.dll 内)
構文
'宣言
Property WindowState As vsWindowState
Get
Set
vsWindowState WindowState { get; set; }
property vsWindowState WindowState {
vsWindowState get ();
void set (vsWindowState value);
}
abstract WindowState : vsWindowState with get, set
function get WindowState () : vsWindowState
function set WindowState (value : vsWindowState)
プロパティ値
型: EnvDTE.vsWindowState
vsWindowState 定数。
実装
解説
WindowState プロパティは、ウィンドウが最大化、最小化、または通常のどの状態にあるのかを設定または返すため、次のコードを正しく動作させるには、環境を MDI モードにする必要があります。
例
一般的なテキスト ファイルを作成して、WindowState プロパティを表示します。
このアドインの例を実行する方法の詳細については、「方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する」を参照してください。
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)
WindowStateExample(_applicationObject)
End Sub
Sub WindowStateExample(ByVal dte As DTE2)
Dim win As Window2
win = CType(_applicationObject.ItemOperations.NewFile _
("General\Text File"), Window2)
MsgBox("Windowstate of " & win.Caption & " is " _
& (win.WindowState.ToString))
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;
WindowStateExample(_applicationObject);
}
public void WindowStateExample(DTE2 dte)
{
Window2 win;
win = (Window2)_applicationObject.ItemOperations.NewFile
(@"General\Text File", "MyTextFile", Constants.vsViewKindTextView);
MessageBox.Show("Windowstate of " + win.Caption + " is "
+ win.WindowState.ToString());
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。