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

Retrieves the scale value for the Decimal.

[Visual Basic]
Public ReadOnly Property Scale As Byte
[C#]
public byte Scale {get;}
[C++]
public: __property unsigned char get_Scale();
[JScript]
public function get Scale() : Byte;

Property Value

The exponent of the Decimal value.

Remarks

The Scale property returns the scale value for the Decimal, which is guaranteed to be between 0 and 28, inclusive. This is the exponent by which the Decimal is multiplied (i.e., 10Scale).

See Also

Decimal Structure | Decimal Members | System Namespace