LogicalAnd
Performs a logical AND for Integer arguments.
function LogicalAnd(A: Integer; B: Integer): Boolean;
Unit
Parameters
A: Integer
B: Integer
Return Value
Boolean - Result of the Logical AND operation.
Description
LogicalAnd is a Boolean function that returns the result of a logical AND operation for the Integer arguments A and B. LogicalAnd returns True when (A and B) = B.