Representing the constant that is the sign mask for the flags field. .
[Visual Basic] Public Const SignMask As Integer [C#] public const int SignMask; [C++] public: const int SignMask; [JScript] public var SignMask : int;
The SignMask is for the flags field. A value of zero in this bit indicates a positive Decimal value, and a value of one in this bit indicates a negative Decimal value
See the OleAut's DECIMAL_NEG constant for negative values in native code.
The SignMask hexadecimal value is unchecked((int)0x80000000).