Creates a DABoolean that represents the logical AND of the given objects. The object's value is TRUE when both b1 and b2 are TRUE; otherwise, it is FALSE.
lib.And(
b1,
b2
)
Returns the DABoolean object.
Converts a boolean to a DABoolean object. The only time DABoolean is used is when converting boolean values to their corresponding DABoolean objects.
lib.DABoolean
Returns the DABoolean object.
Creates a DABoolean object that describes whether the key is up or down.
lib.KeyState(
keyCode
)
Returns the DABoolean object. The value is TRUE when the key is down and FALSE when the key is up.
Creates a DABoolean object that represents the logical NOT of b. The object's value is TRUE when b is FALSE; otherwise, it is FALSE.
lib.Not(
b
)
Returns the DABoolean object.
Creates a DABoolean that represents the logical OR of the given behaviors. The object's value is TRUE when either b1 or b2 is TRUE; otherwise it is FALSE.
lib.Or(
b1,
b2
)
Returns the DABoolean object.
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.