Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/StructuresInputBaseProperties.cs =================================================================== diff -u -radbf2699810c35ead18e88e52127546aab78c23c -rf288f9ccb9ac465f017170a59279909d8431fdc7 --- Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/StructuresInputBaseProperties.cs (.../StructuresInputBaseProperties.cs) (revision adbf2699810c35ead18e88e52127546aab78c23c) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/StructuresInputBaseProperties.cs (.../StructuresInputBaseProperties.cs) (revision f288f9ccb9ac465f017170a59279909d8431fdc7) @@ -157,6 +157,26 @@ #endregion + #region Output Settings + + [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_OutputSettings))] + [ResourcesDisplayName(typeof(Resources), nameof(Resources.ShouldIllustrationPointsBeCalculated_DisplayName))] + [ResourcesDescription(typeof(Resources), nameof(Resources.ShouldIllustrationPointsBeCalculated_Description))] + public bool ShouldIllustrationPointsBeCalculated + { + get + { + return data.WrappedData.ShouldIllustrationPointsBeCalculated; + } + set + { + data.WrappedData.ShouldIllustrationPointsBeCalculated = value; + data.NotifyObservers(); + } + } + + #endregion + [DynamicPropertyOrderEvaluationMethod] public int DynamicPropertyOrderEvaluationMethod(string propertyName) { @@ -588,27 +608,5 @@ } #endregion - - - #region Output Settings - - [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_OutputSettings))] - [ResourcesDisplayName(typeof(Resources), nameof(Resources.ShouldIllustrationPointsBeCalculated_DisplayName))] - [ResourcesDescription(typeof(Resources), nameof(Resources.ShouldIllustrationPointsBeCalculated_Description))] - public bool ShouldIllustrationPointsBeCalculated - { - get - { - return data.WrappedData.ShouldIllustrationPointsBeCalculated; - } - set - { - data.WrappedData.ShouldIllustrationPointsBeCalculated = value; - data.WrappedData.NotifyObservers(); - } - } - - - #endregion } } \ No newline at end of file