From 61173c1b58efa79c0ba6b08348d2796a249d0186 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sat, 1 Sep 2012 09:51:27 -0500 Subject: move help structure one directory up Change-Id: Ie970e39fbb6795a92d9fdd13510409d7dcd071bc --- .../source/text/sbasic/shared/03060200.xhp | 70 ---------------------- 1 file changed, 70 deletions(-) delete mode 100644 helpcontent2/source/text/sbasic/shared/03060200.xhp (limited to 'helpcontent2/source/text/sbasic/shared/03060200.xhp') diff --git a/helpcontent2/source/text/sbasic/shared/03060200.xhp b/helpcontent2/source/text/sbasic/shared/03060200.xhp deleted file mode 100644 index 2cb9ced858..0000000000 --- a/helpcontent2/source/text/sbasic/shared/03060200.xhp +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - -Eqv Operator [Runtime] -/text/sbasic/shared/03060200.xhp - - -Sun Microsystems, Inc. -converted from old format - fpe - - - -
-Eqv operator (logical) - -Eqv Operator [Runtime] -Calculates the logical equivalence of two expressions. -
-Syntax: -Result = Expression1 Eqv Expression2 -Parameters: - -Result: Any numeric variable that contains the result of the comparison. - -Expression1, Expression2: Any expressions that you want to compare. -When testing for equivalence between Boolean expressions, the result is True if both expressions are either True or False. -In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression. -Example: -Sub ExampleEqv -Dim A as Variant, B as Variant, C as Variant, D as Variantsee #i38265 -Dim vOut as Variant -A = 10: B = 8: C = 6: D = Null -vOut = A > B Eqv B > C REM returns -1 -vOut = B > A Eqv B > C REM returns 0 -vOut = A > B Eqv B > D REM returns 0 -vOut = (B > D Eqv B > A) REM returns -1 -vOut = B Eqv A REM returns -3 -End Sub - -
-- cgit