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;
The exponent of the Decimal value.
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).