JP1 Version 8 JP1/Script(UNIX(R)用)
論理否定(Not)(式の論理否定を求める)
機能
式の論理否定を求めます。
形式
Result = Not Expression
指定項目
Result
結果を受け取る変数名を指定します。
Expression
真(True),または偽(False)を評価する任意の式を指定します。
説明
式の論理否定を求めます。
演算結果Resultの値は次のようになります。
Expression | Result |
---|---|
True | False |
False | True |
文字列 | False |
Empty値 | True |
例
' 変数Number1の値が10より小さい場合,メッセージを表示する。 Number1 = Day ( ) If Not 10 < Number1 Then Message( Target_DispOn, "実行結果", "OK" ) End If
All Rights Reserved. Copyright (C) 2003, 2006, Hitachi, Ltd.