|
|
@ -2469,7 +2469,7 @@ namespace NPOI.OpenXmlFormats.Spreadsheet |
|
|
|
private double dyDescentField; |
|
|
|
public CT_SheetFormatPr() |
|
|
|
{ |
|
|
|
this.defaultColWidth = 8; |
|
|
|
this.defaultColWidth = 8.43; |
|
|
|
} |
|
|
|
[XmlAttribute] |
|
|
|
public uint baseColWidth |
|
|
@ -2485,7 +2485,7 @@ namespace NPOI.OpenXmlFormats.Spreadsheet |
|
|
|
} |
|
|
|
|
|
|
|
[XmlAttribute] |
|
|
|
[DefaultValue(typeof(uint), "8")] |
|
|
|
[DefaultValue(typeof(double), "8.43")] |
|
|
|
public double defaultColWidth |
|
|
|
{ |
|
|
|
get |
|
|
@ -2600,7 +2600,7 @@ namespace NPOI.OpenXmlFormats.Spreadsheet |
|
|
|
return null; |
|
|
|
CT_SheetFormatPr ctObj = new CT_SheetFormatPr(); |
|
|
|
ctObj.baseColWidth = XmlHelper.ReadUInt(node.Attributes["baseColWidth"]); |
|
|
|
ctObj.defaultColWidth = XmlHelper.ReadDouble(node.Attributes["defaultColWidth"], 8); |
|
|
|
ctObj.defaultColWidth = XmlHelper.ReadDouble(node.Attributes["defaultColWidth"], 8.43); |
|
|
|
ctObj.defaultRowHeight = XmlHelper.ReadDouble(node.Attributes["defaultRowHeight"]); |
|
|
|
ctObj.customHeight = XmlHelper.ReadBool(node.Attributes["customHeight"]); |
|
|
|
ctObj.zeroHeight = XmlHelper.ReadBool(node.Attributes["zeroHeight"]); |
|
|
|