Description

Arithmetic unary operator to bitwise “Not” the values in this McObject, leaving the result in this McObject.

Return Type

A McObject object.  

Syntax

object.OpSelfBitwiseNot

The OpSelfBitwiseNot Method syntax has these parts:

PartDescription
objectAn expression evaluating to an object of type McObject.

Remarks

The bit values of this McObject are all inverted, and the result is left in this McObject and returned. This operator is only legal for integral Type properties.

Exceptions

Operands must scalars or arrays of some numeric type. Operands may be arrays of VARIANT, but if they are, all elements must be of the same arithmetic type. E.g., Array( 1, 2) is OK, but Array( 1.5, 2) is not legal.