Gets the number of decimal places that the Column can be stored to given a particular Precision.

Namespace:  ESRI.ArcGISExplorer.Data

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public int Scale { get; }
Visual Basic (Declaration)
Public ReadOnly Property Scale As Integer

Field Value

The number of decimal places that can be stored in a column value.

Remarks

The precision and scale of a Column describe the maximum size and precision of data that can be stored in the Column. The precision describes the number of digits that can be stored in the Column and the scale describes the number of decimal places for float and double fields. For example, if the Column value is 54.234 then scale = 3 and precision = 5.

See Also