Hello,
Looks like it is not possible to reduce number of shown on a screen decimal places (or maybe I missed something?)
I did following:
Created memory polyline shape file with one decimal field.
Added this field (code below), number of decimal places is 2.
MapWinGIS.Field f = new MapWinGIS.Field();
f.Type == MapWinGIS.FieldType.DOUBLE_FIELD)
f.Precision = 2;
f.Width = 12;
But when I display labels, I see 6 decimal places.
What could be done to display 2 decimal places as it is specified in attribute table?
Comments: A fix was committed and tested.
Looks like it is not possible to reduce number of shown on a screen decimal places (or maybe I missed something?)
I did following:
Created memory polyline shape file with one decimal field.
Added this field (code below), number of decimal places is 2.
MapWinGIS.Field f = new MapWinGIS.Field();
f.Type == MapWinGIS.FieldType.DOUBLE_FIELD)
f.Precision = 2;
f.Width = 12;
But when I display labels, I see 6 decimal places.
What could be done to display 2 decimal places as it is specified in attribute table?
Comments: A fix was committed and tested.