次の方法で共有


Environment.UserInteractive プロパティ

現在のプロセスがユーザー対話モードで実行されているかどうかを示す値を取得します。

Public Shared ReadOnly Property UserInteractive As Boolean
[C#]
public static bool UserInteractive {get;}
[C++]
public: __property static bool get_UserInteractive();
[JScript]
public static function get UserInteractive() : Boolean;

プロパティ値

現在のプロセスがユーザー対話モードで実行されている場合は true 。それ以外の場合は false

解説

このプロパティは、サービス プロセスとして実行されている場合、または Web アプリケーション内から実行されている場合にだけ false になります。このプロパティが false の場合は、ユーザーが対話するためのグラフィカル ユーザー インターフェイスが存在しないため、モーダル ダイアログやメッセージ ボックスは表示しないでください。

使用例

 
' Sample for the Environment.UserInteractive property
Imports System

Class Sample
   Public Shared Sub Main()
      Console.WriteLine()
      Console.WriteLine("UserInteractive: {0}", Environment.UserInteractive)
   End Sub 'Main
End Class 'Sample
'
'This example produces the following results:
'
'UserInteractive: True
'

[C#] 
// Sample for the Environment.UserInteractive property
using System;

class Sample 
{
    public static void Main() 
    {
    Console.WriteLine();
    Console.WriteLine("UserInteractive: {0}", Environment.UserInteractive);
    }
}
/*
This example produces the following results:

UserInteractive: True
*/

[C++] 
// Sample for the Environment::UserInteractive property
#using <mscorlib.dll>

using namespace System;

int main() {
   Console::WriteLine();
   Console::WriteLine(S"UserInteractive: {0}", __box(Environment::UserInteractive));
}
/*
This example produces the following results:

UserInteractive: True
*/

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

Environment クラス | Environment メンバ | System 名前空間 | SystemInformation