10.7.5 IsFalse

LANSA

10.7.5 IsFalse


IsFalseは、ブール変数を検査し、ブール値がFalseの場合にtrueを返します。

入力パラメータ

なし

#Button.Enabled := #Boolean.IsFalse

 

上記の例は、以下の例と同等です。

If (#Boolean = False)

 

#Button.Enabled := True

 

Else

 

#Button.Enabled := False

 

Endif

 

ÝBoolean型組み込みファンクション