Directives
<<True>>
<<False>>
<<IntegerOne>>
<<IntegerZero>>
<<FixedOne>>
<<FixedZero>>
<<FloatOne>>
<<FloatZero>>
<<EmptyString>>
True Directive
Assignment
SetBoolean
Account.Actioned := <<True>>
The True directive provides a boolean type value of true.
False Directive
Assignment
SetBoolean
Account.Actioned := <<False>>
The False directive provides a boolean type value of false.
IntegerOne Directive
Assignment
SetInteger
Account.Balance := <<IntegerOne>>
The IntegerOne directive provides an integer type value of one.
IntegerZero Directive
Assignment
SetInteger
Account.Balance := <<IntegerZero>>
The IntegerZero directive provides an integer type value of zero.
FixedOne Directive
Assignment
SetFixed
Account.Balance := <<FixedOne>>
The FixedOne directive provides a fixed type value of one.
FixedZero Directive
Assignment
SetFixed
Account.Balance := <<FixedZero>>
The FixedZero directive provides a fixed type value of zero.
FloatOne Directive
Assignment
SetFloat
Account.Overdraft := <<FloatOne>>
The FloatOne directive provides a float type value of one.
FloatZero Directive
Assignment
SetFloat
Account.Overdraft := <<FloatZero>>
The FloatZero directive provides a float type value of zero.
EmptyString Directive
Assignment
SetString
Account.Partner_name := <<EmptyString>>
The EmptyString directive provides a string type null value (or "").
|