IsBitValueSet - Solution Sites Routine

This function determines whether every bit in the iBitValue parameter is also set in the iValue parameter, returning True if so, and False otherwise.

Definition

Function IsBitValueSet(
  byVal iValue,
  byVal iBitValue)

Defined in File

include\std_util_lib.asp

Routines Called

None.

Called By

GetPaymentMethodsForSite

Remarks

Examples:

If iBitValue=5 (0x00000101) and iValue=7 (0x00000111), this function returns True.

If iBitValue=5 (0x00000101) and iValue=6 (0x00000110), this function returns False.

Copyright © 2005 Microsoft Corporation.
All rights reserved.