You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

変数のNOTを返します
Boolean組み込みファンクション (PRIM_LIBI.IBooleanIntrinsics) のメンバ

パラメータ

名前

タイプ

データタイプ

記述

Result

*Result (任意)

ブール値

結果のブール値

詳細


Not は、ブール変数の反対の値を返します。すなわち、True は False として、 False は True として返されます。

Example


#Button.Enabled := #Button.Enabled.Not
上記の例は、以下の例と同等です。
If (#Button.Enabled)
#Button.Enabled := False
Else
#Button.Enabled := True
Endif

参照

すべてのコンポーネント クラス
テクニカルリファレンス

  • No labels