winframe クラス : Exists ゲッタ
説明
ウインドウが存在しているかどうかを示す値を取得します。
構文
winframeInstance.Exists
引数
無し。
返り値
クラス | 説明 |
bool | ウインドウが存在しているかどうかを示す値。 |
サンプルコード
1: | wfpool wfp; |
2: | winframe winframeIns = wfp.GetActive(); // Gets a window that has focus. |
3: | bool exitst = winframeIns.Exists; |
注意
ウインドウが存在していれば true、そうでなければ、false を返します。インスタンスが未初期化の場合も false を返します。
参照リンク
無し。