10.7.9 Not
Notは、ブール変数の反対の値を返します。すなわち、trueはfalseとして、falseはtrueとして返されます。
入力パラメータ
なし
例
#Button.Enabled := #Boolean.Not
上記の例は、以下の例と同等です。
If (#Boolean = True)
#Button.Enabled := False
Else
#Button.Enabled := True
Endif
10.7.9 Not
Notは、ブール変数の反対の値を返します。すなわち、trueはfalseとして、falseはtrueとして返されます。
入力パラメータ
なし
例
#Button.Enabled := #Boolean.Not
上記の例は、以下の例と同等です。
If (#Boolean = True)
#Button.Enabled := False
Else
#Button.Enabled := True
Endif