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 booleans 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.