Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/ReferenceLineProperties.cs =================================================================== diff -u -r01aeb66af89298c610809907bff83d9b9764c897 -rbb7246a859710e284b10c855848be97b8bc0b463 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/ReferenceLineProperties.cs (.../ReferenceLineProperties.cs) (revision 01aeb66af89298c610809907bff83d9b9764c897) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/PropertyClasses/ReferenceLineProperties.cs (.../ReferenceLineProperties.cs) (revision bb7246a859710e284b10c855848be97b8bc0b463) @@ -22,6 +22,7 @@ using System; using System.ComponentModel; using System.Linq; +using Core.Common.Base.Data; using Core.Common.Base.Geometry; using Core.Common.Gui.Attributes; using Core.Common.Gui.Converters; @@ -60,11 +61,11 @@ [ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_General))] [ResourcesDisplayName(typeof(Resources), nameof(Resources.ReferenceLineProperties_Length_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.ReferenceLineProperties_Length_Description))] - public double Length + public RoundedDouble Length { get { - return data.Length; + return new RoundedDouble(2, data.Length); } }