Changed BomExcelSettings defaults
This commit is contained in:
@@ -19,17 +19,17 @@
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add summary section with totals and statistics.
|
/// Add summary section with totals and statistics.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool AddSummary { get; set; } = true;
|
public bool AddSummary { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Format header row with bold text and background color.
|
/// Format header row with bold text and background color.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool FormatHeaders { get; set; } = true;
|
public bool FormatHeaders { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add borders around all cells.
|
/// Add borders around all cells.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool AddBorders { get; set; } = true;
|
public bool AddBorders { get; set; } = false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Freeze the header row for easier scrolling.
|
/// Freeze the header row for easier scrolling.
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Number of decimal places for thickness values.
|
/// Number of decimal places for thickness values.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int ThicknessDecimalPlaces { get; set; } = 2;
|
public int ThicknessDecimalPlaces { get; set; } = 4;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Number of decimal places for K-Factor values.
|
/// Number of decimal places for K-Factor values.
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Number of decimal places for bend radius values.
|
/// Number of decimal places for bend radius values.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int BendRadiusDecimalPlaces { get; set; } = 2;
|
public int BendRadiusDecimalPlaces { get; set; } = 3;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Minimum number of digits for item numbers (pad with zeros).
|
/// Minimum number of digits for item numbers (pad with zeros).
|
||||||
|
|||||||
Reference in New Issue
Block a user