From 58269f9761e199ae859c5828fa9eaf57055b3483 Mon Sep 17 00:00:00 2001 From: AJ Date: Wed, 1 Oct 2025 09:40:54 -0400 Subject: [PATCH] Changed BomExcelSettings defaults --- ExportDXF/Services/BomExcelSettings.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ExportDXF/Services/BomExcelSettings.cs b/ExportDXF/Services/BomExcelSettings.cs index 4de81db..ef23eb1 100644 --- a/ExportDXF/Services/BomExcelSettings.cs +++ b/ExportDXF/Services/BomExcelSettings.cs @@ -19,17 +19,17 @@ /// /// Add summary section with totals and statistics. /// - public bool AddSummary { get; set; } = true; + public bool AddSummary { get; set; } = false; /// /// Format header row with bold text and background color. /// - public bool FormatHeaders { get; set; } = true; + public bool FormatHeaders { get; set; } = false; /// /// Add borders around all cells. /// - public bool AddBorders { get; set; } = true; + public bool AddBorders { get; set; } = false; /// /// Freeze the header row for easier scrolling. @@ -44,7 +44,7 @@ /// /// Number of decimal places for thickness values. /// - public int ThicknessDecimalPlaces { get; set; } = 2; + public int ThicknessDecimalPlaces { get; set; } = 4; /// /// Number of decimal places for K-Factor values. @@ -54,7 +54,7 @@ /// /// Number of decimal places for bend radius values. /// - public int BendRadiusDecimalPlaces { get; set; } = 2; + public int BendRadiusDecimalPlaces { get; set; } = 3; /// /// Minimum number of digits for item numbers (pad with zeros).