NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Decimal.SignMask

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;

Remarks

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).

See Also

Decimal Structure | Decimal Members | System Namespace