Skip to content

Commit 69a285d

Browse files
committed
Removed unfinished property FullPrecision
1 parent 407f24d commit 69a285d

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/EPPlus/ExcelWorkbook.cs

-12
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,6 @@ internal ExcelWorkbook(ExcelPackage package, XmlNamespaceManager namespaceManage
215215
TopNode = WorkbookXml.DocumentElement;
216216
SchemaNodeOrder = new string[] { "fileVersion", "fileSharing", "workbookPr", "workbookProtection", "bookViews", "sheets", "functionGroups", "functionPrototypes", "externalReferences", "definedNames", "calcPr", "oleSize", "customWorkbookViews", "pivotCaches", "smartTagPr", "smartTagTypes", "webPublishing", "fileRecoveryPr", "webPublishObjects", "extLst" };
217217
FullCalcOnLoad = true; //Full calculation on load by default, for both new workbooks and templates.
218-
FullPrecision = GetXmlNodeBool("d:calcPr/@fullPrecision", false);
219218

220219
GetSharedStrings();
221220
}
@@ -1181,15 +1180,6 @@ public ExcelCalcMode CalcMode
11811180
}
11821181
#endregion
11831182
}
1184-
/// <summary>
1185-
/// If false, EPPlus will round cell values to the number of decimals as displayed in the cell by using the cells number format when calculating the workbook.
1186-
/// If true, full precision will be used on calculation.
1187-
/// </summary>
1188-
public bool FullPrecision
1189-
{
1190-
get;
1191-
set;
1192-
}
11931183
private const string FULL_CALC_ON_LOAD_PATH = "d:calcPr/@fullCalcOnLoad";
11941184
/// <summary>
11951185
/// Should Excel do a full calculation after the workbook has been loaded?
@@ -1259,8 +1249,6 @@ internal void Save() // Workbook Save
12591249

12601250
DeleteCalcChain();
12611251

1262-
SetXmlNodeBool("d:calcPr/@fullPrecision", FullPrecision, false);
1263-
12641252
if (_vba == null && !_package.ZipPackage.PartExists(new Uri(ExcelVbaProject.PartUri, UriKind.Relative)))
12651253
{
12661254
if (Part.ContentType != ContentTypes.contentTypeWorkbookDefault &&

0 commit comments

Comments
 (0)