7055 lines
411 KiB
C#
7055 lines
411 KiB
C#
using DocumentFormat.OpenXml.Packaging;
|
||
using Ap = DocumentFormat.OpenXml.ExtendedProperties;
|
||
using Vt = DocumentFormat.OpenXml.VariantTypes;
|
||
using DocumentFormat.OpenXml;
|
||
using DocumentFormat.OpenXml.Spreadsheet;
|
||
using Xdr = DocumentFormat.OpenXml.Drawing.Spreadsheet;
|
||
using A = DocumentFormat.OpenXml.Drawing;
|
||
using C = DocumentFormat.OpenXml.Drawing.Charts;
|
||
using C14 = DocumentFormat.OpenXml.Office2010.Drawing.Charts;
|
||
using X14 = DocumentFormat.OpenXml.Office2010.Excel;
|
||
using System.Linq;
|
||
using PedestrianAndHeadReports.Resources;
|
||
|
||
namespace ExcelExport
|
||
{
|
||
/// <summary>
|
||
/// this class is primarily generated from the open xml sdk productivity tool
|
||
/// it will create an xlsx file given sufficient inputs
|
||
/// </summary>
|
||
public class TRLExport : ExportBase
|
||
{
|
||
/// <summary>
|
||
/// creates spreadsheetdocument
|
||
/// </summary>
|
||
/// <param name="filePath">file path to new file</param>
|
||
/// <param name="CFC">Channel Frequency Class</param>
|
||
/// <param name="testNumber">Test number</param>
|
||
/// <param name="testDate">Test date</param>
|
||
/// <param name="carName">Car name</param>
|
||
/// <param name="model">Car model</param>
|
||
/// <param name="testTemperature">Test temperature</param>
|
||
/// <param name="measurementPoint">measurement point</param>
|
||
/// <param name="collisionSpeed">Collision speed</param>
|
||
/// <param name="impactorID">Impactor Id</param>
|
||
/// <param name="impactorType">Impactor Type</param>
|
||
/// <param name="studyPersonell">study personnel </param>
|
||
/// <param name="and1">And1</param>
|
||
/// <param name="and2">And2</param>
|
||
/// <param name="accelerationUnits">Acceleration units (G,m/sec^2)</param>
|
||
/// <param name="bendingMoments">Bending units (deg)</param>
|
||
/// <param name="shearDisplacementUnits">Shear displacement units (mm)</param>
|
||
/// <param name="timeUnits">Time units (s, ms)</param>
|
||
/// <param name="accelerationYValues">list of Y values for acceleration channel</param>
|
||
/// <param name="accelerationXValues">list of X values for acceleration channel</param>
|
||
/// <param name="bendingYValues">List of Y values for bending channel</param>
|
||
/// <param name="bendingXValues">List of X values for bending channel</param>
|
||
/// <param name="shearingYValues">List of Y values for shearing channel</param>
|
||
/// <param name="shearingXValues">List of X values for shearing channel</param>
|
||
/// <param name="accelMin">Minimum EU for acceleration channel</param>
|
||
/// <param name="accelTimeofMin">Time of min acceleration value</param>
|
||
/// <param name="accelMax">Maximum EU for acceleration channel</param>
|
||
/// <param name="accelTimeofMax">Time of max acceleration value</param>
|
||
/// <param name="bendingMin">Minimum EU for bending channel</param>
|
||
/// <param name="bendingTimeOfMin">Time of min bending value</param>
|
||
/// <param name="bendingMax">Maximum EU for bending channel</param>
|
||
/// <param name="bendingTimeOfMax">Time of max bending value</param>
|
||
/// <param name="shearMin">Min EU value of shearing channel</param>
|
||
/// <param name="shearTimeOfMin">Time of min shearing value</param>
|
||
/// <param name="shearMax">Max EU value of shearing channel</param>
|
||
/// <param name="shearTimeOfMax">Time of max shearing value</param>
|
||
/// <param name="accelRangeMin">Accel chart Min range (or double.NaN)</param>
|
||
/// <param name="accelRangeMax">Accel chart Max range (or double.NaN)</param>
|
||
/// <param name="bendingRangeMin">Bending chart Min Range (or double.NaN)</param>
|
||
/// <param name="bendingRangeMax">Bending chart Max Range (or double.NaN)</param>
|
||
/// <param name="shearRangeMin">Shearing chart Min Range (or double.NaN)</param>
|
||
/// <param name="shearRangeMax">Shearing chart Max Range (or double.NaN)</param>
|
||
public void CreatePackage(string filePath, string CFC, string testNumber, string testDate, string carName, string model, string testTemperature,
|
||
string measurementPoint, string collisionSpeed, string impactorID, string impactorType, string studyPersonnel,
|
||
string and1, string and2, string accelerationUnits, string bendingMoments, string shearDisplacementUnits, string timeUnits,
|
||
double [] accelerationYValues, double [] accelerationXValues,
|
||
double [] bendingYValues, double [] bendingXValues,
|
||
double [] shearingYValues, double [] shearingXValues,
|
||
double accelMin, double accelTimeofMin,double accelMax, double accelTimeofMax,
|
||
double bendingMin, double bendingTimeOfMin, double bendingMax, double bendingTimeOfMax,
|
||
double shearMin, double shearTimeOfMin, double shearMax, double shearTimeOfMax,
|
||
double? accelRangeMin, double? accelRangeMax,
|
||
double? bendingRangeMin, double? bendingRangeMax,
|
||
double? shearRangeMin, double? shearRangeMax,
|
||
string impactorWeight,
|
||
string accelThresholds,
|
||
string bendingThresholds,
|
||
string shearThresholds,
|
||
double [] bendingDisplacementYValues,
|
||
double [] shearingDisplacementYValues)
|
||
{
|
||
using (SpreadsheetDocument package = SpreadsheetDocument.Create(filePath, SpreadsheetDocumentType.Workbook))
|
||
{
|
||
CreateParts(package, CFC, testNumber, testDate, carName, model, testTemperature,
|
||
measurementPoint, collisionSpeed, impactorID, impactorType, studyPersonnel, and1, and2, accelerationUnits, bendingMoments, shearDisplacementUnits, timeUnits,
|
||
accelerationYValues, accelerationXValues,
|
||
bendingYValues, bendingXValues,
|
||
shearingYValues, shearingXValues,
|
||
accelMin, accelTimeofMin, accelMax, accelTimeofMax,
|
||
bendingMin, bendingTimeOfMin, bendingMax, bendingTimeOfMax,
|
||
shearMin, shearTimeOfMin, shearMax, shearTimeOfMax,
|
||
accelRangeMin, accelRangeMax,
|
||
bendingRangeMin, bendingRangeMax,
|
||
shearRangeMin, shearRangeMax,
|
||
impactorWeight,
|
||
accelThresholds,
|
||
bendingThresholds,
|
||
shearThresholds,
|
||
bendingDisplacementYValues,
|
||
shearingDisplacementYValues);
|
||
}
|
||
}
|
||
|
||
// Adds child parts and generates content of the specified part.
|
||
private void CreateParts(SpreadsheetDocument document,string CFC, string testNumber,string testDate,string carName,string model,string testTemperature,
|
||
string measurementPoint, string collisionSpeed, string impactorID, string impactorType, string studyPersonell,
|
||
string and1, string and2, string accelerationUnits, string bendingMoments, string shearDisplacementUnits, string timeUnits,
|
||
double[] accelerationYValues, double[] accelerationXValues,
|
||
double[] bendingYValues, double[] bendingXValues,
|
||
double[] shearingYValues, double[] shearingXValues,
|
||
double accelMin, double accelTimeofMin, double accelMax, double accelTimeofMax,
|
||
double bendingMin, double bendingTimeOfMin, double bendingMax, double bendingTimeOfMax,
|
||
double shearMin, double shearTimeOfMin, double shearMax, double shearTimeOfMax,
|
||
double? accelRangeMin, double? accelRangeMax,
|
||
double? bendingRangeMin, double? bendingRangeMax,
|
||
double? shearRangeMin, double? shearRangeMax,
|
||
string impactorWeight,
|
||
string accelThresholds,
|
||
string bendingTresholds,
|
||
string shearThresholds,
|
||
double [] bendingDisplacementYValues,
|
||
double [] shearingDisplacementYValues)
|
||
{
|
||
if (null != accelRangeMin && double.IsNaN((double)accelRangeMin)) { accelRangeMin = null; }
|
||
if (null != accelRangeMax && double.IsNaN((double)accelRangeMax)) { accelRangeMax = null; }
|
||
if (null != bendingRangeMin && double.IsNaN((double)bendingRangeMin)) { bendingRangeMin = null; }
|
||
if (null != bendingRangeMax && double.IsNaN((double)bendingRangeMax)) { bendingRangeMax = null; }
|
||
if (null != shearRangeMin && double.IsNaN((double)shearRangeMin)) { shearRangeMin = null; }
|
||
if (null != shearRangeMax && double.IsNaN((double)shearRangeMax)) { shearRangeMax = null; }
|
||
|
||
ExtendedFilePropertiesPart extendedFilePropertiesPart1 = document.AddNewPart<ExtendedFilePropertiesPart>("rId3");
|
||
GenerateExtendedFilePropertiesPart1Content(extendedFilePropertiesPart1);
|
||
|
||
WorkbookPart workbookPart1 = document.AddWorkbookPart();
|
||
GenerateWorkbookPart1Content(workbookPart1);
|
||
|
||
_sharedStringTablePart = workbookPart1.AddNewPart<SharedStringTablePart>("rId6");
|
||
_sharedStringTablePart.SharedStringTable = new SharedStringTable();
|
||
|
||
WorksheetPart worksheetPart3 = workbookPart1.AddNewPart<WorksheetPart>("rId1");
|
||
GenerateTopSheetContent(worksheetPart3,
|
||
testNumber,
|
||
testDate,
|
||
carName,
|
||
model,
|
||
testTemperature,
|
||
measurementPoint,
|
||
collisionSpeed,
|
||
impactorID,
|
||
impactorType,
|
||
impactorWeight,
|
||
studyPersonell,
|
||
and1,
|
||
and2,
|
||
CFC,
|
||
accelerationUnits,
|
||
"Nm",
|
||
"mm");
|
||
|
||
WorksheetPart worksheetPart1 = workbookPart1.AddNewPart<WorksheetPart>("rId3");
|
||
GenerateDataSheetContent(worksheetPart1,
|
||
accelerationXValues, accelerationYValues,
|
||
bendingXValues, bendingYValues,
|
||
shearingXValues, shearingYValues,
|
||
bendingDisplacementYValues, shearingDisplacementYValues);
|
||
|
||
WorksheetPart worksheetPart2 = workbookPart1.AddNewPart<WorksheetPart>("rId2");
|
||
GenerateReportSheetContent(worksheetPart2,
|
||
testNumber,
|
||
testTemperature,
|
||
impactorID,
|
||
CFC,
|
||
testDate,
|
||
impactorType,
|
||
carName,
|
||
measurementPoint,
|
||
impactorWeight,
|
||
and1,
|
||
and2,
|
||
model,
|
||
collisionSpeed,
|
||
studyPersonell,
|
||
accelerationUnits,
|
||
accelMax,
|
||
accelTimeofMax,
|
||
accelMin,
|
||
accelTimeofMin,
|
||
bendingMax,
|
||
bendingTimeOfMax,
|
||
bendingMin,
|
||
bendingTimeOfMin,
|
||
shearMax,
|
||
shearTimeOfMax,
|
||
shearMin,
|
||
shearTimeOfMin);
|
||
|
||
DrawingsPart drawingsPart1 = worksheetPart2.AddNewPart<DrawingsPart>("rId2");
|
||
GenerateDrawingsPart1Content(drawingsPart1);
|
||
|
||
ChartPart chartPart1 = drawingsPart1.AddNewPart<ChartPart>("rId3");
|
||
GenerateDisplacementChartContent(chartPart1,
|
||
shearingXValues, shearingDisplacementYValues,
|
||
shearRangeMin,shearRangeMax, shearThresholds);
|
||
|
||
ChartPart chartPart2 = drawingsPart1.AddNewPart<ChartPart>("rId2");
|
||
GenerateBendingChartPart(chartPart2,
|
||
bendingXValues, bendingDisplacementYValues,
|
||
bendingRangeMin, bendingRangeMax, bendingTresholds);
|
||
|
||
ChartPart chartPart3 = drawingsPart1.AddNewPart<ChartPart>("rId1");
|
||
GenerateAccelChartContent(chartPart3,
|
||
accelerationXValues, accelerationYValues,
|
||
accelRangeMin, accelRangeMax, accelThresholds);
|
||
|
||
SpreadsheetPrinterSettingsPart spreadsheetPrinterSettingsPart1 = worksheetPart2.AddNewPart<SpreadsheetPrinterSettingsPart>("rId1");
|
||
GenerateSpreadsheetPrinterSettingsPart1Content(spreadsheetPrinterSettingsPart1);
|
||
|
||
|
||
CalculationChainPart calculationChainPart1 = workbookPart1.AddNewPart<CalculationChainPart>("rId17");
|
||
calculationChainPart1.CalculationChain = _calculationChain1;
|
||
|
||
DrawingsPart drawingsPart2 = worksheetPart3.AddNewPart<DrawingsPart>("rId2");
|
||
GenerateDrawingsPart2Content(drawingsPart2);
|
||
|
||
SpreadsheetPrinterSettingsPart spreadsheetPrinterSettingsPart2 = worksheetPart3.AddNewPart<SpreadsheetPrinterSettingsPart>("rId1");
|
||
GenerateSpreadsheetPrinterSettingsPart2Content(spreadsheetPrinterSettingsPart2);
|
||
|
||
WorkbookStylesPart workbookStylesPart1 = workbookPart1.AddNewPart<WorkbookStylesPart>("rId5");
|
||
GenerateWorkbookStylesPart1Content(workbookStylesPart1);
|
||
|
||
ThemePart themePart1 = workbookPart1.AddNewPart<ThemePart>("rId4");
|
||
GenerateThemePart1Content(themePart1);
|
||
|
||
SetPackageProperties(document);
|
||
}
|
||
|
||
// Generates content of extendedFilePropertiesPart1.
|
||
private void GenerateExtendedFilePropertiesPart1Content(ExtendedFilePropertiesPart extendedFilePropertiesPart1)
|
||
{
|
||
Ap.Properties properties1 = new Ap.Properties();
|
||
properties1.AddNamespaceDeclaration("vt", "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes");
|
||
Ap.Application application1 = new Ap.Application();
|
||
application1.Text = "Microsoft Excel";
|
||
Ap.DocumentSecurity documentSecurity1 = new Ap.DocumentSecurity();
|
||
documentSecurity1.Text = "0";
|
||
Ap.ScaleCrop scaleCrop1 = new Ap.ScaleCrop();
|
||
scaleCrop1.Text = "false";
|
||
|
||
Ap.HeadingPairs headingPairs1 = new Ap.HeadingPairs();
|
||
|
||
Vt.VTVector vTVector1 = new Vt.VTVector() { BaseType = Vt.VectorBaseValues.Variant, Size = (UInt32Value)2U };
|
||
|
||
Vt.Variant variant1 = new Vt.Variant();
|
||
Vt.VTLPSTR vTLPSTR1 = new Vt.VTLPSTR();
|
||
vTLPSTR1.Text = "Worksheets";
|
||
|
||
variant1.Append(vTLPSTR1);
|
||
|
||
Vt.Variant variant2 = new Vt.Variant();
|
||
Vt.VTInt32 vTInt321 = new Vt.VTInt32();
|
||
vTInt321.Text = "3";
|
||
|
||
variant2.Append(vTInt321);
|
||
|
||
vTVector1.Append(variant1);
|
||
vTVector1.Append(variant2);
|
||
|
||
headingPairs1.Append(vTVector1);
|
||
|
||
Ap.TitlesOfParts titlesOfParts1 = new Ap.TitlesOfParts();
|
||
|
||
Vt.VTVector vTVector2 = new Vt.VTVector() { BaseType = Vt.VectorBaseValues.Lpstr, Size = (UInt32Value)3U };
|
||
Vt.VTLPSTR vTLPSTR2 = new Vt.VTLPSTR();
|
||
vTLPSTR2.Text = "Top page";
|
||
Vt.VTLPSTR vTLPSTR3 = new Vt.VTLPSTR();
|
||
vTLPSTR3.Text = "Report";
|
||
Vt.VTLPSTR vTLPSTR4 = new Vt.VTLPSTR();
|
||
vTLPSTR4.Text = "Data";
|
||
|
||
vTVector2.Append(vTLPSTR2);
|
||
vTVector2.Append(vTLPSTR3);
|
||
vTVector2.Append(vTLPSTR4);
|
||
|
||
titlesOfParts1.Append(vTVector2);
|
||
Ap.LinksUpToDate linksUpToDate1 = new Ap.LinksUpToDate();
|
||
linksUpToDate1.Text = "false";
|
||
Ap.SharedDocument sharedDocument1 = new Ap.SharedDocument();
|
||
sharedDocument1.Text = "false";
|
||
Ap.HyperlinksChanged hyperlinksChanged1 = new Ap.HyperlinksChanged();
|
||
hyperlinksChanged1.Text = "false";
|
||
Ap.ApplicationVersion applicationVersion1 = new Ap.ApplicationVersion();
|
||
applicationVersion1.Text = "15.0300";
|
||
|
||
properties1.Append(application1);
|
||
properties1.Append(documentSecurity1);
|
||
properties1.Append(scaleCrop1);
|
||
properties1.Append(headingPairs1);
|
||
properties1.Append(titlesOfParts1);
|
||
properties1.Append(linksUpToDate1);
|
||
properties1.Append(sharedDocument1);
|
||
properties1.Append(hyperlinksChanged1);
|
||
properties1.Append(applicationVersion1);
|
||
|
||
extendedFilePropertiesPart1.Properties = properties1;
|
||
}
|
||
|
||
// Generates content of workbookPart1.
|
||
private void GenerateWorkbookPart1Content(WorkbookPart workbookPart1)
|
||
{
|
||
Workbook workbook1 = new Workbook() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "x15" } };
|
||
workbook1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||
workbook1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
|
||
workbook1.AddNamespaceDeclaration("x15", "http://schemas.microsoft.com/office/spreadsheetml/2010/11/main");
|
||
FileVersion fileVersion1 = new FileVersion() { ApplicationName = "xl", LastEdited = "6", LowestEdited = "4", BuildVersion = "14420" };
|
||
WorkbookProperties workbookProperties1 = new WorkbookProperties() { DefaultThemeVersion = (UInt32Value)124226U };
|
||
|
||
AlternateContent alternateContent1 = new AlternateContent();
|
||
alternateContent1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
|
||
|
||
AlternateContentChoice alternateContentChoice1 = new AlternateContentChoice() { Requires = "x15" };
|
||
|
||
OpenXmlUnknownElement openXmlUnknownElement1 = OpenXmlUnknownElement.CreateOpenXmlUnknownElement("<x15ac:absPath xmlns:x15ac=\"http://schemas.microsoft.com/office/spreadsheetml/2010/11/ac\" url=\"E:\\Projects\\Slice\\1_08\\SliceControl\\bin\\Debug\\Pedestrian and Head\\Reports\\\" />");
|
||
|
||
alternateContentChoice1.Append(openXmlUnknownElement1);
|
||
|
||
alternateContent1.Append(alternateContentChoice1);
|
||
|
||
BookViews bookViews1 = new BookViews();
|
||
WorkbookView workbookView1 = new WorkbookView() { XWindow = 0, YWindow = 0, WindowWidth = (UInt32Value)24000U, WindowHeight = (UInt32Value)9885U };
|
||
|
||
bookViews1.Append(workbookView1);
|
||
|
||
Sheets sheets1 = new Sheets();
|
||
Sheet sheet1 = new Sheet() { Name = "Top page", SheetId = (UInt32Value)1U, Id = "rId1" };
|
||
Sheet sheet2 = new Sheet() { Name = "Report", SheetId = (UInt32Value)2U, Id = "rId2" };
|
||
Sheet sheet3 = new Sheet() { Name = "Data", SheetId = (UInt32Value)3U, Id = "rId3" };
|
||
|
||
sheets1.Append(sheet1);
|
||
sheets1.Append(sheet2);
|
||
sheets1.Append(sheet3);
|
||
CalculationProperties calculationProperties1 = new CalculationProperties() { CalculationId = (UInt32Value)152511U };
|
||
|
||
workbook1.Append(fileVersion1);
|
||
workbook1.Append(workbookProperties1);
|
||
workbook1.Append(alternateContent1);
|
||
workbook1.Append(bookViews1);
|
||
workbook1.Append(sheets1);
|
||
workbook1.Append(calculationProperties1);
|
||
|
||
workbookPart1.Workbook = workbook1;
|
||
}
|
||
|
||
// Generates content of worksheetPart1.
|
||
private void GenerateDataSheetContent(WorksheetPart worksheetPart1,
|
||
double [] accelTime, double [] accelEU,
|
||
double [] bendTime, double [] bendEU,
|
||
double [] shearTime, double [] shearEU,
|
||
double [] bendingDisplacementY, double [] shearingDisplacementY)
|
||
{
|
||
Worksheet worksheet1 = new Worksheet() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "x14ac" } };
|
||
worksheet1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||
worksheet1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
|
||
worksheet1.AddNamespaceDeclaration("x14ac", "http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac");
|
||
SheetDimension sheetDimension1 = new SheetDimension() { Reference = "A1:F4" };
|
||
|
||
SheetViews sheetViews1 = new SheetViews();
|
||
|
||
SheetView sheetView1 = new SheetView() { WorkbookViewId = (UInt32Value)0U };
|
||
Selection selection1 = new Selection() { ActiveCell = "A1", SequenceOfReferences = new ListValue<StringValue>() { InnerText = "A1" } };
|
||
|
||
sheetView1.Append(selection1);
|
||
|
||
sheetViews1.Append(sheetView1);
|
||
SheetFormatProperties sheetFormatProperties1 = new SheetFormatProperties() { DefaultRowHeight = 15D };
|
||
|
||
SheetData sheetData1 = new SheetData();
|
||
|
||
Row r = new Row() { RowIndex = (UInt32Value)1U, Spans = new ListValue<StringValue>() { InnerText = "1:8" } };
|
||
|
||
Cell c = new Cell() { CellReference = "A1", StyleIndex = (UInt32Value)1U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem("Accel Time").ToString() });
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = "B1", StyleIndex = (UInt32Value)1U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem("Accel EU").ToString() });
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = "C1", StyleIndex = (UInt32Value)1U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem("Bend Time").ToString() });
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = "D1", StyleIndex = (UInt32Value)1U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem("Bend EU").ToString() });
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = "E1", StyleIndex = (UInt32Value)1U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem("Shear Time").ToString() });
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = "F1", StyleIndex = (UInt32Value)1U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem("Shear EU").ToString() });
|
||
r.Append(c);
|
||
|
||
c = new Cell(){ CellReference = "G1", StyleIndex = (UInt32Value)1U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem("Bend Angle").ToString()});
|
||
r.Append(c);
|
||
|
||
c = new Cell(){ CellReference = "H1", StyleIndex = (UInt32Value)1U, DataType = CellValues.SharedString};
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem("Shear Displacement").ToString()});
|
||
r.Append(c);
|
||
|
||
sheetData1.Append(r);
|
||
|
||
int maxBend = System.Math.Min(bendTime.Length, bendEU.Length);
|
||
int maxShear = System.Math.Min(shearTime.Length, shearEU.Length);
|
||
int maxAccel = System.Math.Min(accelTime.Length, accelEU.Length);
|
||
|
||
|
||
int max = System.Math.Max(maxBend, maxShear);
|
||
max = System.Math.Max(max, maxAccel);
|
||
max = System.Math.Max(max, bendingDisplacementY.Length);
|
||
max = System.Math.Max(max, shearingDisplacementY.Length);
|
||
|
||
for (int i = 0; i < max; i++)
|
||
{
|
||
r = new Row() { RowIndex = (UInt32Value)System.Convert.ToUInt32(2 + i), Spans = new ListValue<StringValue>() { InnerText = "1:8" } };
|
||
|
||
c = new Cell() { CellReference = string.Format("A{0}", 2 + i), StyleIndex = (UInt32Value)2U };
|
||
c.Append(new CellValue() { Text = i < maxAccel ? accelTime[i].ToString() : "" });
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = string.Format("B{0}", 2 + i), StyleIndex = (UInt32Value)2U };
|
||
c.Append(new CellValue() { Text = i < maxAccel ? accelEU[i].ToString() : "" });
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = string.Format("C{0}", 2 + i), StyleIndex = (UInt32Value)2U };
|
||
c.Append(new CellValue() { Text = i < maxBend ? bendTime[i].ToString(): ""});
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = string.Format("D{0}", 2 + i), StyleIndex = (UInt32Value)2U };
|
||
c.Append(new CellValue() { Text = i < maxBend ? bendEU[i].ToString() : "" });
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = string.Format("E{0}", 2 + i), StyleIndex = (UInt32Value)2U };
|
||
c.Append(new CellValue() { Text = i < maxShear ? shearTime[i].ToString() : "" });
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = string.Format("F{0}", 2 + i), StyleIndex = (UInt32Value)2U };
|
||
c.Append(new CellValue() { Text = i < maxShear ? shearEU[i].ToString() : "" });
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = string.Format("G{0}", 2 + i), StyleIndex = (UInt32Value)2U };
|
||
c.Append(new CellValue() { Text = i < bendingDisplacementY.Length ? bendingDisplacementY[i].ToString() : "" });
|
||
r.Append(c);
|
||
|
||
c = new Cell() { CellReference = string.Format("H{0}", 2 + i), StyleIndex = (UInt32Value)2U };
|
||
c.Append(new CellValue() { Text = i < shearingDisplacementY.Length ? shearingDisplacementY[i].ToString() : "" });
|
||
r.Append(c);
|
||
|
||
sheetData1.Append(r);
|
||
}
|
||
|
||
PageMargins pageMargins1 = new PageMargins() { Left = 0.7D, Right = 0.7D, Top = 0.75D, Bottom = 0.75D, Header = 0.3D, Footer = 0.3D };
|
||
|
||
worksheet1.Append(sheetDimension1);
|
||
worksheet1.Append(sheetViews1);
|
||
worksheet1.Append(sheetFormatProperties1);
|
||
worksheet1.Append(sheetData1);
|
||
worksheet1.Append(pageMargins1);
|
||
|
||
worksheetPart1.Worksheet = worksheet1;
|
||
}
|
||
private void InsertReportFirstBlankHalf(uint row, ref Row r)
|
||
{
|
||
r.Append(new Cell() { CellReference = string.Format("A{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("B{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("C{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("D{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("E{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("F{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("G{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("H{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("I{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("J{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("K{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("L{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("M{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("N{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("O{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("P{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("Q{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("R{0}",row), StyleIndex = (UInt32Value)6U });
|
||
}
|
||
// Generates content of worksheetPart2.
|
||
private void GenerateReportSheetContent(WorksheetPart worksheetPart2,
|
||
string testNo,
|
||
string testTemperature,
|
||
string impactorId,
|
||
string testCFC,
|
||
string testDate,
|
||
string impactorType,
|
||
string carMaker,
|
||
string measurementPoint,
|
||
string impactorWeight,
|
||
string And1,
|
||
string And2,
|
||
string model,
|
||
string collisionSpeed,
|
||
string testAdministrator,
|
||
string accelerationUnits,
|
||
double accelerationMax,
|
||
double accelerationMaxTime,
|
||
double accelerationMin,
|
||
double accelerationMinTime,
|
||
double bendingAngleMax,
|
||
double bendingAngleMaxTime,
|
||
double bendingMin,
|
||
double bendingMinTime,
|
||
double shearMax,
|
||
double shearMaxTime,
|
||
double shearMin,
|
||
double shearMinTime
|
||
)
|
||
{
|
||
Worksheet worksheet2 = new Worksheet() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "x14ac" } };
|
||
worksheet2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||
worksheet2.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
|
||
worksheet2.AddNamespaceDeclaration("x14ac", "http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac");
|
||
SheetDimension sheetDimension2 = new SheetDimension() { Reference = "A1:Y84" };
|
||
|
||
SheetViews sheetViews2 = new SheetViews();
|
||
|
||
SheetView sheetView2 = new SheetView() { ZoomScaleNormal = (UInt32Value)100U, WorkbookViewId = (UInt32Value)0U };
|
||
Selection selection2 = new Selection() { ActiveCell = "V7", SequenceOfReferences = new ListValue<StringValue>() { InnerText = "V7" } };
|
||
|
||
sheetView2.Append(selection2);
|
||
|
||
sheetViews2.Append(sheetView2);
|
||
SheetFormatProperties sheetFormatProperties2 = new SheetFormatProperties() { DefaultColumnWidth = 3.5703125D, DefaultRowHeight = 11.25D, CustomHeight = true };
|
||
|
||
Columns columns1 = new Columns();
|
||
Column column1 = new Column() { Min = (UInt32Value)1U, Max = (UInt32Value)16384U, Width = 3.5703125D, Style = (UInt32Value)5U };
|
||
|
||
columns1.Append(column1);
|
||
|
||
SheetData sheetData2 = new SheetData();
|
||
|
||
Row r = new Row() { RowIndex = (UInt32Value)1U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
Cell c = new Cell() { CellReference = "A1", StyleIndex = (UInt32Value)46U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem("LWRLEG (E-PLI)").ToString() });
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "B1", StyleIndex = (UInt32Value)47U });
|
||
r.Append(new Cell() { CellReference = "C1", StyleIndex = (UInt32Value)48U });
|
||
r.Append(new Cell() { CellReference = "D1", StyleIndex = (UInt32Value)49U });
|
||
r.Append(new Cell() { CellReference = "E1", StyleIndex = (UInt32Value)50U });
|
||
r.Append(new Cell() { CellReference = "F1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "G1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "H1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "I1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "J1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "K1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "L1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "M1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "N1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "O1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "P1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "Q1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "R1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "S1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "T1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "U1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "V1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "W1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "X1", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)2U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
c = new Cell() { CellReference = "A2", StyleIndex = (UInt32Value)51U, DataType = CellValues.SharedString };
|
||
r.Append(new CellValue() { Text = InsertSharedStringItem("TEST").ToString() });
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "B2", StyleIndex = (UInt32Value)52U });
|
||
r.Append(new Cell() { CellReference = "C2", StyleIndex = (UInt32Value)53U });
|
||
r.Append(new Cell() { CellReference = "D2", StyleIndex = (UInt32Value)54U });
|
||
r.Append(new Cell() { CellReference = "E2", StyleIndex = (UInt32Value)55U });
|
||
r.Append(new Cell() { CellReference = "F2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "G2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "H2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "I2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "J2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "K2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "L2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "M2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "N2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "O2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "P2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "Q2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "R2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "S2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "T2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "U2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "V2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "W2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "X2", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)3U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true, ThickBot = true };
|
||
r.Append(new Cell() { CellReference = "A3", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("B3", (UInt32Value)3U, StringResources.TestNumber));
|
||
|
||
r.Append(new Cell() { CellReference = "C3", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "D3", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("E3", (UInt32Value)58U, testNo, StringResources.TestNumber));
|
||
|
||
r.Append(new Cell() { CellReference = "F3", StyleIndex = (UInt32Value)58U });
|
||
r.Append(new Cell() { CellReference = "G3", StyleIndex = (UInt32Value)58U });
|
||
|
||
r.Append(CreateStylizedTextCell("H3", (UInt32Value)3U, StringResources.TestTemperature));
|
||
|
||
r.Append(new Cell() { CellReference = "I3", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("J3", (UInt32Value)58U, testTemperature, StringResources.TestTemperature));
|
||
|
||
r.Append(new Cell() { CellReference = "K3", StyleIndex = (UInt32Value)58U });
|
||
r.Append(new Cell() { CellReference = "L3", StyleIndex = (UInt32Value)58U });
|
||
|
||
r.Append(CreateStylizedTextCell("M3", (UInt32Value)44U, StringResources.ImpactorID));
|
||
|
||
r.Append(new Cell() { CellReference = "N3", StyleIndex = (UInt32Value)26U });
|
||
r.Append(new Cell() { CellReference = "O3", StyleIndex = (UInt32Value)26U });
|
||
|
||
r.Append(CreateStylizedTextCell("P3", (UInt32Value)62U, impactorId, StringResources.ImpactorID));
|
||
|
||
r.Append(new Cell() { CellReference = "Q3", StyleIndex = (UInt32Value)62U });
|
||
r.Append(new Cell() { CellReference = "R3", StyleIndex = (UInt32Value)62U });
|
||
|
||
r.Append(CreateStylizedTextCell("S3", (UInt32Value)44U, StringResources.ChannelFrequencyClass));
|
||
|
||
r.Append(new Cell() { CellReference = "T3", StyleIndex = (UInt32Value)26U });
|
||
r.Append(new Cell() { CellReference = "U3", StyleIndex = (UInt32Value)26U });
|
||
|
||
r.Append(CreateStylizedTextCell("V3", (UInt32Value)57U, testCFC, StringResources.ChannelFrequencyClass));
|
||
|
||
r.Append(new Cell() { CellReference = "W3", StyleIndex = (UInt32Value)57U });
|
||
r.Append(new Cell() { CellReference = "X3", StyleIndex = (UInt32Value)57U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)4U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true, ThickTop = true, ThickBot = true };
|
||
r.Append(new Cell() { CellReference = "A4", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("B4", (UInt32Value)3U, StringResources.TestDate));
|
||
|
||
r.Append(new Cell() { CellReference = "C4", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "D4", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("E4", (UInt32Value)59U, testDate, StringResources.TestDate));
|
||
|
||
r.Append(new Cell() { CellReference = "F4", StyleIndex = (UInt32Value)59U });
|
||
r.Append(new Cell() { CellReference = "G4", StyleIndex = (UInt32Value)59U });
|
||
r.Append(new Cell() { CellReference = "H4", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "I4", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "J4", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "K4", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "L4", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("M4", (UInt32Value)44U, StringResources.ImpactorType));
|
||
|
||
r.Append(new Cell() { CellReference = "N4", StyleIndex = (UInt32Value)26U });
|
||
r.Append(new Cell() { CellReference = "O4", StyleIndex = (UInt32Value)26U });
|
||
|
||
r.Append(CreateStylizedTextCell("P4", (UInt32Value)56U, impactorType, StringResources.ImpactorType));
|
||
|
||
r.Append(new Cell() { CellReference = "Q4", StyleIndex = (UInt32Value)56U });
|
||
r.Append(new Cell() { CellReference = "R4", StyleIndex = (UInt32Value)56U });
|
||
r.Append(new Cell() { CellReference = "S4", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "T4", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "U4", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "V4", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "W4", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "X4", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)5U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true, ThickTop = true, ThickBot = true };
|
||
r.Append(new Cell() { CellReference = "A5", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("B5", (UInt32Value)3U, StringResources.CarName));
|
||
|
||
r.Append(new Cell() { CellReference = "C5", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "D5", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("E5", (UInt32Value)59U, carMaker, StringResources.CarName));
|
||
|
||
r.Append(new Cell() { CellReference = "F5", StyleIndex = (UInt32Value)59U });
|
||
r.Append(new Cell() { CellReference = "G5", StyleIndex = (UInt32Value)59U });
|
||
|
||
r.Append(CreateStylizedTextCell("H5", (UInt32Value)3U, StringResources.MeasurementPoint));
|
||
|
||
r.Append(new Cell() { CellReference = "I5", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("J5", (UInt32Value)60U, measurementPoint, StringResources.MeasurementPoint));
|
||
|
||
r.Append(new Cell() { CellReference = "K5", StyleIndex = (UInt32Value)60U });
|
||
r.Append(new Cell() { CellReference = "L5", StyleIndex = (UInt32Value)60U });
|
||
|
||
r.Append(CreateStylizedTextCell("M5", (UInt32Value)44U, StringResources.ImpactorWeight));
|
||
|
||
r.Append(new Cell() { CellReference = "N5", StyleIndex = (UInt32Value)45U });
|
||
r.Append(new Cell() { CellReference = "O5", StyleIndex = (UInt32Value)45U });
|
||
|
||
r.Append(CreateStylizedTextCell("P5", (UInt32Value)56U, impactorWeight, StringResources.ImpactorWeight));
|
||
|
||
r.Append(new Cell() { CellReference = "Q5", StyleIndex = (UInt32Value)56U });
|
||
r.Append(new Cell() { CellReference = "R5", StyleIndex = (UInt32Value)56U });
|
||
|
||
r.Append(CreateStylizedTextCell("S5", (UInt32Value)4U, StringResources.Reserved1));
|
||
|
||
r.Append(new Cell() { CellReference = "T5", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "U5", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("V5", (UInt32Value)57U, And1, StringResources.Reserved1));
|
||
//r.Append(CreateStylizedTextCell("Q6", (UInt32Value)22U, and1, StringResources.Reserved1));
|
||
|
||
r.Append(new Cell() { CellReference = "W5", StyleIndex = (UInt32Value)57U });
|
||
r.Append(new Cell() { CellReference = "X5", StyleIndex = (UInt32Value)57U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)6U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true, ThickTop = true, ThickBot = true };
|
||
r.Append(new Cell() { CellReference = "A6", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("B6", (UInt32Value)3U, StringResources.Model));
|
||
|
||
r.Append(new Cell() { CellReference = "C6", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "D6", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("E6", (UInt32Value)59U, model, StringResources.Model));
|
||
|
||
r.Append(new Cell() { CellReference = "F6", StyleIndex = (UInt32Value)59U });
|
||
r.Append(new Cell() { CellReference = "G6", StyleIndex = (UInt32Value)59U });
|
||
|
||
r.Append(CreateStylizedTextCell("H6", (UInt32Value)4U, StringResources.CrashVelocity));
|
||
|
||
r.Append(new Cell() { CellReference = "I6", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("J6", (UInt32Value)61U, collisionSpeed, StringResources.CrashVelocity));
|
||
|
||
r.Append(new Cell() { CellReference = "K6", StyleIndex = (UInt32Value)61U });
|
||
r.Append(new Cell() { CellReference = "L6", StyleIndex = (UInt32Value)61U });
|
||
|
||
r.Append(CreateStylizedTextCell("M6", (UInt32Value)44U, StringResources.Examiner));
|
||
|
||
r.Append(new Cell() { CellReference = "N6", StyleIndex = (UInt32Value)26U });
|
||
r.Append(new Cell() { CellReference = "O6", StyleIndex = (UInt32Value)26U });
|
||
|
||
r.Append(CreateStylizedTextCell("P6", (UInt32Value)56U, testAdministrator, StringResources.Examiner));
|
||
|
||
r.Append(new Cell() { CellReference = "Q6", StyleIndex = (UInt32Value)56U });
|
||
r.Append(new Cell() { CellReference = "R6", StyleIndex = (UInt32Value)56U });
|
||
|
||
r.Append(CreateStylizedTextCell("S6", (UInt32Value)4U, StringResources.Reserved2));
|
||
|
||
r.Append(new Cell() { CellReference = "T6", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "U6", StyleIndex = (UInt32Value)6U });
|
||
|
||
r.Append(CreateStylizedTextCell("V6", (UInt32Value)56U, And2, StringResources.Reserved2));
|
||
|
||
r.Append(new Cell() { CellReference = "W6", StyleIndex = (UInt32Value)56U });
|
||
r.Append(new Cell() { CellReference = "X6", StyleIndex = (UInt32Value)56U });
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)7U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
r.Append(CreateStylizedTextCell("A7", (UInt32Value)42U, "Acceleration"));
|
||
|
||
r.Append(new Cell() { CellReference = "B7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "C7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "D7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "E7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "F7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "G7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "H7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "I7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "J7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "K7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "L7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "M7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "N7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "O7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "P7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "Q7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "R7", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "S7", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "T7", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "U7", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "V7", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "W7", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "X7", StyleIndex = (UInt32Value)6U });
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)8U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(8U, ref r);
|
||
|
||
r.Append(CreateStylizedTextCell("S8", (UInt32Value)43U, string.Format("Acceleration ({0})", accelerationUnits)));
|
||
|
||
r.Append(new Cell() { CellReference = "T8", StyleIndex = (UInt32Value)43U });
|
||
r.Append(new Cell() { CellReference = "U8", StyleIndex = (UInt32Value)43U });
|
||
r.Append(new Cell() { CellReference = "V8", StyleIndex = (UInt32Value)43U });
|
||
r.Append(new Cell() { CellReference = "W8", StyleIndex = (UInt32Value)43U });
|
||
r.Append(new Cell() { CellReference = "X8", StyleIndex = (UInt32Value)43U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)9U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(9U, ref r);
|
||
|
||
r.Append(CreateStylizedTextCell("S9", (UInt32Value)40U, "MAX"));
|
||
|
||
r.Append(new Cell() { CellReference = "T9", StyleIndex = (UInt32Value)40U });
|
||
r.Append(new Cell() { CellReference = "U9", StyleIndex = (UInt32Value)40U });
|
||
|
||
r.Append(CreateNumericCell("V9", 41U, accelerationMax));
|
||
|
||
r.Append(new Cell() { CellReference = "W9", StyleIndex = (UInt32Value)41U });
|
||
r.Append(new Cell() { CellReference = "X9", StyleIndex = (UInt32Value)41U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)10U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(10U, ref r);
|
||
|
||
r.Append(CreateStylizedTextCell("S10", (UInt32Value)40U, "Time of MAX"));
|
||
|
||
r.Append(new Cell() { CellReference = "T10", StyleIndex = (UInt32Value)40U });
|
||
r.Append(new Cell() { CellReference = "U10", StyleIndex = (UInt32Value)40U });
|
||
|
||
r.Append(CreateNumericCell("V10", (UInt32Value)41U, accelerationMaxTime));
|
||
|
||
r.Append(new Cell() { CellReference = "W10", StyleIndex = (UInt32Value)41U });
|
||
r.Append(new Cell() { CellReference = "X10", StyleIndex = (UInt32Value)41U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)11U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(11U, ref r);
|
||
r.Append(CreateStylizedTextCell("S11", (UInt32Value)33U, "MIN"));
|
||
|
||
r.Append(new Cell() { CellReference = "T11", StyleIndex = (UInt32Value)34U });
|
||
r.Append(new Cell() { CellReference = "U11", StyleIndex = (UInt32Value)34U });
|
||
|
||
r.Append(CreateNumericCell("V11", (UInt32Value)35U, accelerationMin));
|
||
|
||
r.Append(new Cell() { CellReference = "W11", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "X11", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "Y11", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)12U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(12U, ref r);
|
||
r.Append(CreateStylizedTextCell("S12", (UInt32Value)37U, "Time of MIN"));
|
||
|
||
r.Append(new Cell() { CellReference = "T12", StyleIndex = (UInt32Value)38U });
|
||
r.Append(new Cell() { CellReference = "U12", StyleIndex = (UInt32Value)38U });
|
||
|
||
r.Append(CreateNumericCell("V12", 35U, accelerationMinTime));
|
||
|
||
r.Append(new Cell() { CellReference = "W12", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "X12", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "Y12", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
for (uint i = 13U; i < 28; i++)
|
||
{
|
||
r = new Row() { RowIndex = (UInt32Value)i, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
InsertReportFirstBlankHalf(i, ref r);
|
||
r.Append(new Cell() { CellReference = string.Format("S{0}",i), StyleIndex = (UInt32Value)10U });
|
||
r.Append(new Cell() { CellReference = string.Format("T{0}",i), StyleIndex = (UInt32Value)10U });
|
||
r.Append(new Cell() { CellReference = string.Format("U{0}",i), StyleIndex = (UInt32Value)10U });
|
||
r.Append(new Cell() { CellReference = string.Format("V{0}",i), StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = string.Format("W{0}",i), StyleIndex = (UInt32Value)12U });
|
||
r.Append(new Cell() { CellReference = string.Format("X{0}",i), StyleIndex = (UInt32Value)12U });
|
||
r.Append(new Cell() { CellReference = string.Format("Y{0}", i), StyleIndex = (UInt32Value)9U });
|
||
sheetData2.Append(r);
|
||
}
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)28U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
r.Append(CreateStylizedTextCell("A28", (UInt32Value)42U, "Bending Angle"));
|
||
|
||
r.Append(new Cell() { CellReference = "B28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "C28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "D28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "E28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "F28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "G28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "H28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "I28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "J28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "K28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "L28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "M28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "N28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "O28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "P28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "Q28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "R28", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "S28", StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = "T28", StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = "U28", StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = "V28", StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = "W28", StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = "X28", StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = "Y28", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)29U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(29U, ref r);
|
||
r.Append(CreateStylizedTextCell("S29", (UInt32Value)39U, "Bending Angle(degrees)"));
|
||
|
||
r.Append(new Cell() { CellReference = "T29", StyleIndex = (UInt32Value)39U });
|
||
r.Append(new Cell() { CellReference = "U29", StyleIndex = (UInt32Value)39U });
|
||
r.Append(new Cell() { CellReference = "V29", StyleIndex = (UInt32Value)39U });
|
||
r.Append(new Cell() { CellReference = "W29", StyleIndex = (UInt32Value)39U });
|
||
r.Append(new Cell() { CellReference = "X29", StyleIndex = (UInt32Value)39U });
|
||
r.Append(new Cell() { CellReference = "Y29", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)30U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
InsertReportFirstBlankHalf(30U, ref r);
|
||
r.Append(CreateStylizedTextCell("S30", (UInt32Value)40U, "MAX"));
|
||
|
||
r.Append(new Cell() { CellReference = "T30", StyleIndex = (UInt32Value)40U });
|
||
r.Append(new Cell() { CellReference = "U30", StyleIndex = (UInt32Value)40U });
|
||
|
||
r.Append(CreateNumericCell("V30", 41U, bendingAngleMax));
|
||
|
||
r.Append(new Cell() { CellReference = "W30", StyleIndex = (UInt32Value)41U });
|
||
r.Append(new Cell() { CellReference = "X30", StyleIndex = (UInt32Value)41U });
|
||
r.Append(new Cell() { CellReference = "Y30", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)31U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(31U, ref r);
|
||
r.Append(CreateStylizedTextCell("S31", (UInt32Value)40U, "Time of MAX"));
|
||
|
||
r.Append(new Cell() { CellReference = "T31", StyleIndex = (UInt32Value)40U });
|
||
r.Append(new Cell() { CellReference = "U31", StyleIndex = (UInt32Value)40U });
|
||
|
||
r.Append(CreateNumericCell("V31", 41U, bendingAngleMaxTime));
|
||
|
||
r.Append(new Cell() { CellReference = "W31", StyleIndex = (UInt32Value)41U });
|
||
r.Append(new Cell() { CellReference = "X31", StyleIndex = (UInt32Value)41U });
|
||
r.Append(new Cell() { CellReference = "Y31", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)32U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(32U, ref r);
|
||
r.Append(CreateStylizedTextCell("S32", (UInt32Value)33U, "MIN"));
|
||
|
||
r.Append(new Cell() { CellReference = "T32", StyleIndex = (UInt32Value)34U });
|
||
r.Append(new Cell() { CellReference = "U32", StyleIndex = (UInt32Value)34U });
|
||
|
||
r.Append(CreateNumericCell("V32", 35U, bendingMin));
|
||
|
||
r.Append(new Cell() { CellReference = "W32", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "X32", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "Y32", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)33U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(33U, ref r);
|
||
r.Append(CreateStylizedTextCell("S33", (UInt32Value)37U, "Time of MIN"));
|
||
|
||
r.Append(new Cell() { CellReference = "T33", StyleIndex = (UInt32Value)38U });
|
||
r.Append(new Cell() { CellReference = "U33", StyleIndex = (UInt32Value)38U });
|
||
|
||
r.Append(CreateNumericCell("V33", 35U, bendingMinTime));
|
||
|
||
r.Append(new Cell() { CellReference = "W33", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "X33", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "Y33", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
for (uint i = 34; i < 48; i++)
|
||
{
|
||
r = new Row() { RowIndex = (UInt32Value)i, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
InsertReportFirstBlankHalf(i, ref r);
|
||
r.Append(new Cell() { CellReference = string.Format("S{0}",i), StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = string.Format("T{0}",i), StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = string.Format("U{0}",i), StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = string.Format("V{0}",i), StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = string.Format("W{0}",i), StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = string.Format("X{0}",i), StyleIndex = (UInt32Value)11U });
|
||
r.Append(new Cell() { CellReference = string.Format("Y{0}",i), StyleIndex = (UInt32Value)9U });
|
||
sheetData2.Append(r);
|
||
}
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)48U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
r.Append(CreateStylizedTextCell("A48", (UInt32Value)42U, "Shear Displacement"));
|
||
|
||
r.Append(new Cell() { CellReference = "B48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "C48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "D48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "E48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "F48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "G48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "H48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "I48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "J48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "K48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "L48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "M48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "N48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "O48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "P48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "Q48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "R48", StyleIndex = (UInt32Value)42U });
|
||
r.Append(new Cell() { CellReference = "S48", StyleIndex = (UInt32Value)15U });
|
||
r.Append(new Cell() { CellReference = "T48", StyleIndex = (UInt32Value)15U });
|
||
r.Append(new Cell() { CellReference = "U48", StyleIndex = (UInt32Value)15U });
|
||
r.Append(new Cell() { CellReference = "V48", StyleIndex = (UInt32Value)15U });
|
||
r.Append(new Cell() { CellReference = "W48", StyleIndex = (UInt32Value)15U });
|
||
r.Append(new Cell() { CellReference = "X48", StyleIndex = (UInt32Value)15U });
|
||
r.Append(new Cell() { CellReference = "Y48", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)49U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(49U, ref r);
|
||
r.Append(CreateStylizedTextCell("S49", (UInt32Value)39U, "Shear Displacement (mm)"));
|
||
|
||
r.Append(new Cell() { CellReference = "T49", StyleIndex = (UInt32Value)39U });
|
||
r.Append(new Cell() { CellReference = "U49", StyleIndex = (UInt32Value)39U });
|
||
r.Append(new Cell() { CellReference = "V49", StyleIndex = (UInt32Value)39U });
|
||
r.Append(new Cell() { CellReference = "W49", StyleIndex = (UInt32Value)39U });
|
||
r.Append(new Cell() { CellReference = "X49", StyleIndex = (UInt32Value)39U });
|
||
r.Append(new Cell() { CellReference = "Y49", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)50U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(50U, ref r);
|
||
|
||
r.Append(CreateStylizedTextCell("S50", (UInt32Value)40U, "MAX"));
|
||
|
||
r.Append(new Cell() { CellReference = "T50", StyleIndex = (UInt32Value)40U });
|
||
r.Append(new Cell() { CellReference = "U50", StyleIndex = (UInt32Value)40U });
|
||
|
||
r.Append(CreateNumericCell("V50", 41U, shearMax));
|
||
|
||
r.Append(new Cell() { CellReference = "W50", StyleIndex = (UInt32Value)41U });
|
||
r.Append(new Cell() { CellReference = "X50", StyleIndex = (UInt32Value)41U });
|
||
r.Append(new Cell() { CellReference = "Y50", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)51U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
InsertReportFirstBlankHalf(51U, ref r);
|
||
r.Append(CreateStylizedTextCell("S51", (UInt32Value)40U, "Time of MAX"));
|
||
|
||
r.Append(new Cell() { CellReference = "T51", StyleIndex = (UInt32Value)40U });
|
||
r.Append(new Cell() { CellReference = "U51", StyleIndex = (UInt32Value)40U });
|
||
|
||
r.Append(CreateNumericCell("V51", 41U, shearMaxTime));
|
||
|
||
r.Append(new Cell() { CellReference = "W51", StyleIndex = (UInt32Value)41U });
|
||
r.Append(new Cell() { CellReference = "X51", StyleIndex = (UInt32Value)41U });
|
||
r.Append(new Cell() { CellReference = "Y51", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)52U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(52U, ref r);
|
||
r.Append(CreateStylizedTextCell("S52", (UInt32Value)33U, "MIN"));
|
||
|
||
r.Append(new Cell() { CellReference = "T52", StyleIndex = (UInt32Value)34U });
|
||
r.Append(new Cell() { CellReference = "U52", StyleIndex = (UInt32Value)34U });
|
||
|
||
r.Append(CreateNumericCell("V52", 35U, shearMin));
|
||
|
||
r.Append(new Cell() { CellReference = "W52", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "X52", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "Y52", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)53U, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
|
||
InsertReportFirstBlankHalf(53U, ref r);
|
||
r.Append(CreateStylizedTextCell("S53", (UInt32Value)37U, "Time of MIN"));
|
||
|
||
r.Append(new Cell() { CellReference = "T53", StyleIndex = (UInt32Value)38U });
|
||
r.Append(new Cell() { CellReference = "U53", StyleIndex = (UInt32Value)38U });
|
||
|
||
r.Append(CreateNumericCell("V53", 35U, shearMinTime));
|
||
|
||
r.Append(new Cell() { CellReference = "W53", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "X53", StyleIndex = (UInt32Value)36U });
|
||
r.Append(new Cell() { CellReference = "Y53", StyleIndex = (UInt32Value)9U });
|
||
|
||
sheetData2.Append(r);
|
||
|
||
for (uint i = 54U; i <= 67U; i++)
|
||
{
|
||
r = new Row() { RowIndex = (UInt32Value)i, Spans = new ListValue<StringValue>() { InnerText = "1:25" }, Height = 11.25D, CustomHeight = true };
|
||
InsertReportFirstBlankHalf(i, ref r);
|
||
r.Append(new Cell() { CellReference = string.Format("S{0}", i), StyleIndex = (UInt32Value)7U });
|
||
r.Append(new Cell() { CellReference = string.Format("T{0}", i), StyleIndex = (UInt32Value)7U });
|
||
r.Append(new Cell() { CellReference = string.Format("U{0}", i), StyleIndex = (UInt32Value)7U });
|
||
r.Append(new Cell() { CellReference = string.Format("V{0}", i), StyleIndex = (UInt32Value)7U });
|
||
r.Append(new Cell() { CellReference = string.Format("W{0}", i), StyleIndex = (UInt32Value)7U });
|
||
r.Append(new Cell() { CellReference = string.Format("X{0}", i), StyleIndex = (UInt32Value)7U });
|
||
sheetData2.Append(r);
|
||
|
||
}
|
||
|
||
sheetData2.Append(new Row() { RowIndex = (UInt32Value)81U, Height = 12D, CustomHeight = true });
|
||
sheetData2.Append(new Row() { RowIndex = (UInt32Value)82U, Height = 12D, CustomHeight = true });
|
||
sheetData2.Append(new Row() { RowIndex = (UInt32Value)83U, Height = 12D, CustomHeight = true });
|
||
sheetData2.Append(new Row() { RowIndex = (UInt32Value)84U, Height = 12D, CustomHeight = true });
|
||
|
||
MergeCells mergeCells1 = new MergeCells() { Count = (UInt32Value)51U };
|
||
mergeCells1.Append(new MergeCell() { Reference = "V10:X10" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "P5:R5" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "P6:R6" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "A7:R7" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V3:X3" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V5:X5" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V6:X6" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "E3:G3" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "E4:G4" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "E5:G5" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "E6:G6" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "J3:L3" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "J5:L5" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "J6:L6" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "P3:R3" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "P4:R4" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "A1:E1" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "A2:E2" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "M3:O3" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S3:U3" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S10:U10" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S8:X8" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S9:U9" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V9:X9" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "M6:O6" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "M4:O4" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "M5:O5" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "A28:R28" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S29:X29" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S30:U30" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V30:X30" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S11:U11" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S12:U12" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V11:X11" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V12:X12" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S31:U31" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V31:X31" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "A48:R48" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S32:U32" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V32:X32" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S33:U33" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V33:X33" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S52:U52" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V52:X52" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S53:U53" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V53:X53" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S49:X49" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S50:U50" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V50:X50" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "S51:U51" });
|
||
mergeCells1.Append(new MergeCell() { Reference = "V51:X51" });
|
||
|
||
PageMargins pageMargins2 = new PageMargins() { Left = 0.7D, Right = 0.7D, Top = 0.75D, Bottom = 0.75D, Header = 0.3D, Footer = 0.3D };
|
||
PageSetup pageSetup1 = new PageSetup() { PaperSize = (UInt32Value)9U, Orientation = OrientationValues.Portrait, Id = "rId1" };
|
||
Drawing drawing1 = new Drawing() { Id = "rId2" };
|
||
|
||
worksheet2.Append(sheetDimension2);
|
||
worksheet2.Append(sheetViews2);
|
||
worksheet2.Append(sheetFormatProperties2);
|
||
worksheet2.Append(columns1);
|
||
worksheet2.Append(sheetData2);
|
||
worksheet2.Append(mergeCells1);
|
||
worksheet2.Append(pageMargins2);
|
||
worksheet2.Append(pageSetup1);
|
||
worksheet2.Append(drawing1);
|
||
|
||
worksheetPart2.Worksheet = worksheet2;
|
||
}
|
||
|
||
// Generates content of drawingsPart1.
|
||
private void GenerateDrawingsPart1Content(DrawingsPart drawingsPart1)
|
||
{
|
||
Xdr.WorksheetDrawing worksheetDrawing1 = new Xdr.WorksheetDrawing();
|
||
worksheetDrawing1.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
|
||
worksheetDrawing1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
|
||
|
||
Xdr.TwoCellAnchor twoCellAnchor1 = new Xdr.TwoCellAnchor();
|
||
|
||
Xdr.FromMarker fromMarker1 = new Xdr.FromMarker();
|
||
Xdr.ColumnId columnId1 = new Xdr.ColumnId();
|
||
columnId1.Text = "0";
|
||
Xdr.ColumnOffset columnOffset1 = new Xdr.ColumnOffset();
|
||
columnOffset1.Text = "38100";
|
||
Xdr.RowId rowId1 = new Xdr.RowId();
|
||
rowId1.Text = "7";
|
||
Xdr.RowOffset rowOffset1 = new Xdr.RowOffset();
|
||
rowOffset1.Text = "28575";
|
||
|
||
fromMarker1.Append(columnId1);
|
||
fromMarker1.Append(columnOffset1);
|
||
fromMarker1.Append(rowId1);
|
||
fromMarker1.Append(rowOffset1);
|
||
|
||
Xdr.ToMarker toMarker1 = new Xdr.ToMarker();
|
||
Xdr.ColumnId columnId2 = new Xdr.ColumnId();
|
||
columnId2.Text = "18";
|
||
Xdr.ColumnOffset columnOffset2 = new Xdr.ColumnOffset();
|
||
columnOffset2.Text = "0";
|
||
Xdr.RowId rowId2 = new Xdr.RowId();
|
||
rowId2.Text = "26";
|
||
Xdr.RowOffset rowOffset2 = new Xdr.RowOffset();
|
||
rowOffset2.Text = "123825";
|
||
|
||
toMarker1.Append(columnId2);
|
||
toMarker1.Append(columnOffset2);
|
||
toMarker1.Append(rowId2);
|
||
toMarker1.Append(rowOffset2);
|
||
|
||
Xdr.GraphicFrame graphicFrame1 = new Xdr.GraphicFrame() { Macro = "" };
|
||
|
||
Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties1 = new Xdr.NonVisualGraphicFrameProperties();
|
||
Xdr.NonVisualDrawingProperties nonVisualDrawingProperties1 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)6U, Name = "Chart 5" };
|
||
|
||
Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties1 = new Xdr.NonVisualGraphicFrameDrawingProperties();
|
||
A.GraphicFrameLocks graphicFrameLocks1 = new A.GraphicFrameLocks();
|
||
|
||
nonVisualGraphicFrameDrawingProperties1.Append(graphicFrameLocks1);
|
||
|
||
nonVisualGraphicFrameProperties1.Append(nonVisualDrawingProperties1);
|
||
nonVisualGraphicFrameProperties1.Append(nonVisualGraphicFrameDrawingProperties1);
|
||
|
||
Xdr.Transform transform1 = new Xdr.Transform();
|
||
A.Offset offset1 = new A.Offset() { X = 0L, Y = 0L };
|
||
A.Extents extents1 = new A.Extents() { Cx = 0L, Cy = 0L };
|
||
|
||
transform1.Append(offset1);
|
||
transform1.Append(extents1);
|
||
|
||
A.Graphic graphic1 = new A.Graphic();
|
||
|
||
A.GraphicData graphicData1 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };
|
||
|
||
C.ChartReference chartReference1 = new C.ChartReference() { Id = "rId1" };
|
||
chartReference1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
|
||
chartReference1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||
|
||
graphicData1.Append(chartReference1);
|
||
|
||
graphic1.Append(graphicData1);
|
||
|
||
graphicFrame1.Append(nonVisualGraphicFrameProperties1);
|
||
graphicFrame1.Append(transform1);
|
||
graphicFrame1.Append(graphic1);
|
||
Xdr.ClientData clientData1 = new Xdr.ClientData();
|
||
|
||
twoCellAnchor1.Append(fromMarker1);
|
||
twoCellAnchor1.Append(toMarker1);
|
||
twoCellAnchor1.Append(graphicFrame1);
|
||
twoCellAnchor1.Append(clientData1);
|
||
|
||
Xdr.TwoCellAnchor twoCellAnchor2 = new Xdr.TwoCellAnchor();
|
||
|
||
Xdr.FromMarker fromMarker2 = new Xdr.FromMarker();
|
||
Xdr.ColumnId columnId3 = new Xdr.ColumnId();
|
||
columnId3.Text = "0";
|
||
Xdr.ColumnOffset columnOffset3 = new Xdr.ColumnOffset();
|
||
columnOffset3.Text = "57150";
|
||
Xdr.RowId rowId3 = new Xdr.RowId();
|
||
rowId3.Text = "28";
|
||
Xdr.RowOffset rowOffset3 = new Xdr.RowOffset();
|
||
rowOffset3.Text = "9526";
|
||
|
||
fromMarker2.Append(columnId3);
|
||
fromMarker2.Append(columnOffset3);
|
||
fromMarker2.Append(rowId3);
|
||
fromMarker2.Append(rowOffset3);
|
||
|
||
Xdr.ToMarker toMarker2 = new Xdr.ToMarker();
|
||
Xdr.ColumnId columnId4 = new Xdr.ColumnId();
|
||
columnId4.Text = "18";
|
||
Xdr.ColumnOffset columnOffset4 = new Xdr.ColumnOffset();
|
||
columnOffset4.Text = "9525";
|
||
Xdr.RowId rowId4 = new Xdr.RowId();
|
||
rowId4.Text = "46";
|
||
Xdr.RowOffset rowOffset4 = new Xdr.RowOffset();
|
||
rowOffset4.Text = "133350";
|
||
|
||
toMarker2.Append(columnId4);
|
||
toMarker2.Append(columnOffset4);
|
||
toMarker2.Append(rowId4);
|
||
toMarker2.Append(rowOffset4);
|
||
|
||
Xdr.GraphicFrame graphicFrame2 = new Xdr.GraphicFrame() { Macro = "" };
|
||
|
||
Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties2 = new Xdr.NonVisualGraphicFrameProperties();
|
||
Xdr.NonVisualDrawingProperties nonVisualDrawingProperties2 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)7U, Name = "Chart 6" };
|
||
|
||
Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties2 = new Xdr.NonVisualGraphicFrameDrawingProperties();
|
||
A.GraphicFrameLocks graphicFrameLocks2 = new A.GraphicFrameLocks();
|
||
|
||
nonVisualGraphicFrameDrawingProperties2.Append(graphicFrameLocks2);
|
||
|
||
nonVisualGraphicFrameProperties2.Append(nonVisualDrawingProperties2);
|
||
nonVisualGraphicFrameProperties2.Append(nonVisualGraphicFrameDrawingProperties2);
|
||
|
||
Xdr.Transform transform2 = new Xdr.Transform();
|
||
A.Offset offset2 = new A.Offset() { X = 0L, Y = 0L };
|
||
A.Extents extents2 = new A.Extents() { Cx = 0L, Cy = 0L };
|
||
|
||
transform2.Append(offset2);
|
||
transform2.Append(extents2);
|
||
|
||
A.Graphic graphic2 = new A.Graphic();
|
||
|
||
A.GraphicData graphicData2 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };
|
||
|
||
C.ChartReference chartReference2 = new C.ChartReference() { Id = "rId2" };
|
||
chartReference2.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
|
||
chartReference2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||
|
||
graphicData2.Append(chartReference2);
|
||
|
||
graphic2.Append(graphicData2);
|
||
|
||
graphicFrame2.Append(nonVisualGraphicFrameProperties2);
|
||
graphicFrame2.Append(transform2);
|
||
graphicFrame2.Append(graphic2);
|
||
Xdr.ClientData clientData2 = new Xdr.ClientData();
|
||
|
||
twoCellAnchor2.Append(fromMarker2);
|
||
twoCellAnchor2.Append(toMarker2);
|
||
twoCellAnchor2.Append(graphicFrame2);
|
||
twoCellAnchor2.Append(clientData2);
|
||
|
||
Xdr.TwoCellAnchor twoCellAnchor3 = new Xdr.TwoCellAnchor();
|
||
|
||
Xdr.FromMarker fromMarker3 = new Xdr.FromMarker();
|
||
Xdr.ColumnId columnId5 = new Xdr.ColumnId();
|
||
columnId5.Text = "0";
|
||
Xdr.ColumnOffset columnOffset5 = new Xdr.ColumnOffset();
|
||
columnOffset5.Text = "66675";
|
||
Xdr.RowId rowId5 = new Xdr.RowId();
|
||
rowId5.Text = "47";
|
||
Xdr.RowOffset rowOffset5 = new Xdr.RowOffset();
|
||
rowOffset5.Text = "133350";
|
||
|
||
fromMarker3.Append(columnId5);
|
||
fromMarker3.Append(columnOffset5);
|
||
fromMarker3.Append(rowId5);
|
||
fromMarker3.Append(rowOffset5);
|
||
|
||
Xdr.ToMarker toMarker3 = new Xdr.ToMarker();
|
||
Xdr.ColumnId columnId6 = new Xdr.ColumnId();
|
||
columnId6.Text = "18";
|
||
Xdr.ColumnOffset columnOffset6 = new Xdr.ColumnOffset();
|
||
columnOffset6.Text = "19050";
|
||
Xdr.RowId rowId6 = new Xdr.RowId();
|
||
rowId6.Text = "66";
|
||
Xdr.RowOffset rowOffset6 = new Xdr.RowOffset();
|
||
rowOffset6.Text = "76200";
|
||
|
||
toMarker3.Append(columnId6);
|
||
toMarker3.Append(columnOffset6);
|
||
toMarker3.Append(rowId6);
|
||
toMarker3.Append(rowOffset6);
|
||
|
||
Xdr.GraphicFrame graphicFrame3 = new Xdr.GraphicFrame() { Macro = "" };
|
||
|
||
Xdr.NonVisualGraphicFrameProperties nonVisualGraphicFrameProperties3 = new Xdr.NonVisualGraphicFrameProperties();
|
||
Xdr.NonVisualDrawingProperties nonVisualDrawingProperties3 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)8U, Name = "Chart 7" };
|
||
|
||
Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties3 = new Xdr.NonVisualGraphicFrameDrawingProperties();
|
||
A.GraphicFrameLocks graphicFrameLocks3 = new A.GraphicFrameLocks();
|
||
|
||
nonVisualGraphicFrameDrawingProperties3.Append(graphicFrameLocks3);
|
||
|
||
nonVisualGraphicFrameProperties3.Append(nonVisualDrawingProperties3);
|
||
nonVisualGraphicFrameProperties3.Append(nonVisualGraphicFrameDrawingProperties3);
|
||
|
||
Xdr.Transform transform3 = new Xdr.Transform();
|
||
A.Offset offset3 = new A.Offset() { X = 0L, Y = 0L };
|
||
A.Extents extents3 = new A.Extents() { Cx = 0L, Cy = 0L };
|
||
|
||
transform3.Append(offset3);
|
||
transform3.Append(extents3);
|
||
|
||
A.Graphic graphic3 = new A.Graphic();
|
||
|
||
A.GraphicData graphicData3 = new A.GraphicData() { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" };
|
||
|
||
C.ChartReference chartReference3 = new C.ChartReference() { Id = "rId3" };
|
||
chartReference3.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
|
||
chartReference3.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||
|
||
graphicData3.Append(chartReference3);
|
||
|
||
graphic3.Append(graphicData3);
|
||
|
||
graphicFrame3.Append(nonVisualGraphicFrameProperties3);
|
||
graphicFrame3.Append(transform3);
|
||
graphicFrame3.Append(graphic3);
|
||
Xdr.ClientData clientData3 = new Xdr.ClientData();
|
||
|
||
twoCellAnchor3.Append(fromMarker3);
|
||
twoCellAnchor3.Append(toMarker3);
|
||
twoCellAnchor3.Append(graphicFrame3);
|
||
twoCellAnchor3.Append(clientData3);
|
||
|
||
worksheetDrawing1.Append(twoCellAnchor1);
|
||
worksheetDrawing1.Append(twoCellAnchor2);
|
||
worksheetDrawing1.Append(twoCellAnchor3);
|
||
|
||
drawingsPart1.WorksheetDrawing = worksheetDrawing1;
|
||
}
|
||
|
||
// Generates content of chartPart1.
|
||
private void GenerateDisplacementChartContent(ChartPart chartPart1,
|
||
double [] x, double [] y, double? min, double? max, string thresholds)
|
||
{
|
||
System.Collections.Generic.List<double> lines = new System.Collections.Generic.List<double>();
|
||
foreach (string t in thresholds.Split(','))
|
||
{
|
||
double d;
|
||
if (double.TryParse(t.Trim(), out d)) { lines.Add(d); }
|
||
}
|
||
C.ChartSpace chartSpace1 = new C.ChartSpace();
|
||
chartSpace1.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
|
||
chartSpace1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
|
||
chartSpace1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||
C.Date1904 date19041 = new C.Date1904() { Val = false };
|
||
C.EditingLanguage editingLanguage1 = new C.EditingLanguage() { Val = "en-US" };
|
||
C.RoundedCorners roundedCorners1 = new C.RoundedCorners() { Val = false };
|
||
|
||
AlternateContent alternateContent2 = new AlternateContent();
|
||
alternateContent2.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
|
||
|
||
AlternateContentChoice alternateContentChoice2 = new AlternateContentChoice() { Requires = "c14" };
|
||
alternateContentChoice2.AddNamespaceDeclaration("c14", "http://schemas.microsoft.com/office/drawing/2007/8/2/chart");
|
||
C14.Style style1 = new C14.Style() { Val = 102 };
|
||
|
||
alternateContentChoice2.Append(style1);
|
||
|
||
AlternateContentFallback alternateContentFallback1 = new AlternateContentFallback();
|
||
C.Style style2 = new C.Style() { Val = 2 };
|
||
|
||
alternateContentFallback1.Append(style2);
|
||
|
||
alternateContent2.Append(alternateContentChoice2);
|
||
alternateContent2.Append(alternateContentFallback1);
|
||
|
||
C.Chart chart1 = new C.Chart();
|
||
C.AutoTitleDeleted autoTitleDeleted1 = new C.AutoTitleDeleted() { Val = true };
|
||
|
||
C.PlotArea plotArea1 = new C.PlotArea();
|
||
C.Layout layout1 = new C.Layout();
|
||
|
||
C.ScatterChart scatterChart1 = new C.ScatterChart();
|
||
C.ScatterStyle scatterStyle1 = new C.ScatterStyle() { Val = C.ScatterStyleValues.Line };
|
||
C.VaryColors varyColors1 = new C.VaryColors() { Val = false };
|
||
|
||
C.ScatterChartSeries scatterChartSeries1 = new C.ScatterChartSeries();
|
||
C.Smooth smooth1 = new DocumentFormat.OpenXml.Drawing.Charts.Smooth() { Val = false };
|
||
scatterChartSeries1.Append(smooth1);
|
||
C.Index index1 = new C.Index() { Val = (UInt32Value)0U };
|
||
C.Order order1 = new C.Order() { Val = (UInt32Value)0U };
|
||
|
||
C.SeriesText seriesText1 = new C.SeriesText();
|
||
C.NumericValue numericValue1 = new C.NumericValue();
|
||
numericValue1.Text = "Displacement";
|
||
|
||
seriesText1.Append(numericValue1);
|
||
|
||
C.ChartShapeProperties chartShapeProperties1 = new C.ChartShapeProperties();
|
||
|
||
A.Outline outline1 = new A.Outline(){ Width = 12700 };
|
||
|
||
A.SolidFill solidFill1 = new A.SolidFill();
|
||
A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex() { Val = "0070C0" };
|
||
|
||
solidFill1.Append(rgbColorModelHex1);
|
||
|
||
outline1.Append(solidFill1);
|
||
|
||
chartShapeProperties1.Append(outline1);
|
||
|
||
C.Marker marker1 = new C.Marker();
|
||
C.Symbol symbol1 = new C.Symbol() { Val = C.MarkerStyleValues.None };
|
||
|
||
marker1.Append(symbol1);
|
||
|
||
C.XValues xValues1 = new C.XValues();
|
||
|
||
C.NumberReference numberReference1 = new C.NumberReference();
|
||
C.Formula formula1 = new C.Formula();
|
||
formula1.Text = string.Format("Data!$E$2:$E${0}", 1 + x.Length);
|
||
|
||
C.NumberingCache numberingCache1 = new C.NumberingCache();
|
||
C.FormatCode formatCode1 = new C.FormatCode();
|
||
formatCode1.Text = "General";
|
||
C.PointCount pointCount1 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(x.Length) };
|
||
|
||
numberingCache1.Append(formatCode1);
|
||
numberingCache1.Append(pointCount1);
|
||
for (int i = 0; i < x.Length; i++)
|
||
{
|
||
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
||
p.Append(new C.NumericValue() { Text = x[i].ToString() });
|
||
numberingCache1.Append(p);
|
||
}
|
||
|
||
numberReference1.Append(formula1);
|
||
numberReference1.Append(numberingCache1);
|
||
|
||
xValues1.Append(numberReference1);
|
||
|
||
C.YValues yValues1 = new C.YValues();
|
||
|
||
C.NumberReference numberReference2 = new C.NumberReference();
|
||
C.Formula formula2 = new C.Formula();
|
||
formula2.Text = string.Format("Data!$H$2:$H${0}", 1 + y.Length);
|
||
|
||
C.NumberingCache numberingCache2 = new C.NumberingCache();
|
||
C.FormatCode formatCode2 = new C.FormatCode();
|
||
formatCode2.Text = "General";
|
||
C.PointCount pointCount2 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(y.Length) };
|
||
|
||
numberingCache2.Append(formatCode2);
|
||
numberingCache2.Append(pointCount2);
|
||
for (int i = 0; i < y.Length; i++)
|
||
{
|
||
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
||
p.Append(new C.NumericValue() { Text = y[i].ToString() });
|
||
numberingCache2.Append(p);
|
||
}
|
||
|
||
numberReference2.Append(formula2);
|
||
numberReference2.Append(numberingCache2);
|
||
|
||
yValues1.Append(numberReference2);
|
||
//C.Smooth smooth1 = new C.Smooth() { Val = true };
|
||
|
||
scatterChartSeries1.Append(index1);
|
||
scatterChartSeries1.Append(order1);
|
||
scatterChartSeries1.Append(seriesText1);
|
||
scatterChartSeries1.Append(chartShapeProperties1);
|
||
scatterChartSeries1.Append(marker1);
|
||
scatterChartSeries1.Append(xValues1);
|
||
scatterChartSeries1.Append(yValues1);
|
||
//scatterChartSeries1.Append(smooth1);
|
||
|
||
C.DataLabels dataLabels1 = new C.DataLabels();
|
||
C.ShowLegendKey showLegendKey1 = new C.ShowLegendKey() { Val = false };
|
||
C.ShowValue showValue1 = new C.ShowValue() { Val = false };
|
||
C.ShowCategoryName showCategoryName1 = new C.ShowCategoryName() { Val = false };
|
||
C.ShowSeriesName showSeriesName1 = new C.ShowSeriesName() { Val = false };
|
||
C.ShowPercent showPercent1 = new C.ShowPercent() { Val = false };
|
||
C.ShowBubbleSize showBubbleSize1 = new C.ShowBubbleSize() { Val = false };
|
||
|
||
dataLabels1.Append(showLegendKey1);
|
||
dataLabels1.Append(showValue1);
|
||
dataLabels1.Append(showCategoryName1);
|
||
dataLabels1.Append(showSeriesName1);
|
||
dataLabels1.Append(showPercent1);
|
||
dataLabels1.Append(showBubbleSize1);
|
||
C.AxisId axisId1 = new C.AxisId() { Val = (UInt32Value)224939760U };
|
||
C.AxisId axisId2 = new C.AxisId() { Val = (UInt32Value)226534440U };
|
||
|
||
scatterChart1.Append(scatterStyle1);
|
||
scatterChart1.Append(varyColors1);
|
||
scatterChart1.Append(scatterChartSeries1);
|
||
|
||
for (int i = 0; i < lines.Count; i++)
|
||
{
|
||
|
||
C.ScatterChartSeries scatterChartSeries = new C.ScatterChartSeries();
|
||
C.Smooth smooth = new DocumentFormat.OpenXml.Drawing.Charts.Smooth() { Val = false };
|
||
scatterChartSeries.Append(smooth1);
|
||
C.Index index = new C.Index() { Val = (UInt32Value)System.Convert.ToUInt32(5 + i) };
|
||
C.Order order = new C.Order() { Val = (UInt32Value)System.Convert.ToUInt32(5 + i) };
|
||
|
||
C.SeriesText seriesText = new C.SeriesText();
|
||
C.NumericValue numericValue31 = new C.NumericValue();
|
||
numericValue31.Text = string.Format("Threshold{0}", 1 + i);
|
||
|
||
seriesText.Append(numericValue31);
|
||
|
||
C.ChartShapeProperties chartShapeProperties = new C.ChartShapeProperties();
|
||
|
||
A.Outline outline = new A.Outline(){ Width = 12700 };
|
||
|
||
A.SolidFill solidFill = new A.SolidFill();
|
||
A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex() { Val = "A52A2A" };
|
||
|
||
solidFill.Append(rgbColorModelHex);
|
||
|
||
outline.Append(solidFill);
|
||
|
||
chartShapeProperties.Append(outline);
|
||
|
||
C.Marker marker = new C.Marker();
|
||
C.Symbol symbol = new C.Symbol() { Val = C.MarkerStyleValues.None };
|
||
|
||
marker.Append(symbol);
|
||
|
||
C.XValues xValues = new C.XValues();
|
||
|
||
C.NumberLiteral numberLiteral1 = new C.NumberLiteral();
|
||
C.FormatCode formatCode13 = new C.FormatCode();
|
||
formatCode13.Text = "General";
|
||
C.PointCount pointCount13 = new C.PointCount() { Val = (UInt32Value)2U };
|
||
|
||
C.NumericPoint numericPoint25 = new C.NumericPoint() { Index = (UInt32Value)0U };
|
||
C.NumericValue numericValue32 = new C.NumericValue();
|
||
numericValue32.Text = x.Min().ToString();
|
||
|
||
numericPoint25.Append(numericValue32);
|
||
|
||
C.NumericPoint numericPoint26 = new C.NumericPoint() { Index = (UInt32Value)1U };
|
||
C.NumericValue numericValue33 = new C.NumericValue();
|
||
numericValue33.Text = x.Max().ToString();
|
||
|
||
numericPoint26.Append(numericValue33);
|
||
|
||
numberLiteral1.Append(formatCode13);
|
||
numberLiteral1.Append(pointCount13);
|
||
numberLiteral1.Append(numericPoint25);
|
||
numberLiteral1.Append(numericPoint26);
|
||
|
||
xValues.Append(numberLiteral1);
|
||
|
||
C.YValues yValues = new C.YValues();
|
||
|
||
C.NumberLiteral numberLiteral2 = new C.NumberLiteral();
|
||
C.FormatCode formatCode14 = new C.FormatCode();
|
||
formatCode14.Text = "General";
|
||
C.PointCount pointCount14 = new C.PointCount() { Val = (UInt32Value)2U };
|
||
|
||
C.NumericPoint numericPoint27 = new C.NumericPoint() { Index = (UInt32Value)0U };
|
||
C.NumericValue numericValue34 = new C.NumericValue();
|
||
numericValue34.Text = lines[i].ToString();
|
||
|
||
numericPoint27.Append(numericValue34);
|
||
|
||
C.NumericPoint numericPoint28 = new C.NumericPoint() { Index = (UInt32Value)1U };
|
||
C.NumericValue numericValue35 = new C.NumericValue();
|
||
numericValue35.Text = lines[i].ToString();
|
||
|
||
numericPoint28.Append(numericValue35);
|
||
|
||
numberLiteral2.Append(formatCode14);
|
||
numberLiteral2.Append(pointCount14);
|
||
numberLiteral2.Append(numericPoint27);
|
||
numberLiteral2.Append(numericPoint28);
|
||
|
||
yValues.Append(numberLiteral2);
|
||
//C.Smooth smooth = new C.Smooth() { Val = true };
|
||
|
||
C.ChartShapeProperties chartShapeProperties10 = new C.ChartShapeProperties();
|
||
|
||
A.Outline outline10 = new A.Outline(){ Width = 12700 };
|
||
|
||
A.SolidFill solidFill2 = new A.SolidFill();
|
||
A.SchemeColor schemeColor1 = new A.SchemeColor() { Val = A.SchemeColorValues.Text1 };
|
||
|
||
solidFill2.Append(schemeColor1);
|
||
|
||
outline10.Append(solidFill2);
|
||
|
||
chartShapeProperties10.Append(outline10);
|
||
|
||
scatterChartSeries.Append(index);
|
||
scatterChartSeries.Append(order);
|
||
scatterChartSeries.Append(seriesText);
|
||
scatterChartSeries.Append(chartShapeProperties10);
|
||
scatterChartSeries.Append(marker);
|
||
scatterChartSeries.Append(xValues);
|
||
scatterChartSeries.Append(yValues);
|
||
//scatterChartSeries.Append(smooth);
|
||
scatterChart1.Append(scatterChartSeries);
|
||
}
|
||
|
||
scatterChart1.Append(dataLabels1);
|
||
scatterChart1.Append(axisId1);
|
||
scatterChart1.Append(axisId2);
|
||
|
||
C.ValueAxis valueAxis1 = new C.ValueAxis();
|
||
C.AxisId axisId3 = new C.AxisId() { Val = (UInt32Value)224939760U };
|
||
|
||
C.Scaling scaling1 = new C.Scaling();
|
||
C.Orientation orientation1 = new C.Orientation() { Val = C.OrientationValues.MinMax };
|
||
|
||
scaling1.Append(orientation1);
|
||
C.Delete delete1 = new C.Delete() { Val = false };
|
||
C.AxisPosition axisPosition1 = new C.AxisPosition() { Val = C.AxisPositionValues.Bottom };
|
||
|
||
C.MajorGridlines majorGridlines1 = new C.MajorGridlines();
|
||
|
||
C.ChartShapeProperties chartShapeProperties2 = new C.ChartShapeProperties();
|
||
A.Outline outline2 = new A.Outline() { Width = 12700 };
|
||
|
||
chartShapeProperties2.Append(outline2);
|
||
|
||
majorGridlines1.Append(chartShapeProperties2);
|
||
C.MinorGridlines minorGridlines1 = new C.MinorGridlines();
|
||
C.NumberingFormat numberingFormat1 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true };
|
||
C.MajorTickMark majorTickMark1 = new C.MajorTickMark() { Val = C.TickMarkValues.Outside };
|
||
C.MinorTickMark minorTickMark1 = new C.MinorTickMark() { Val = C.TickMarkValues.None };
|
||
C.TickLabelPosition tickLabelPosition1 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low };
|
||
|
||
C.ChartShapeProperties chartShapeProperties3 = new C.ChartShapeProperties();
|
||
A.Outline outline3 = new A.Outline() { Width = 38100 };
|
||
|
||
chartShapeProperties3.Append(outline3);
|
||
C.CrossingAxis crossingAxis1 = new C.CrossingAxis() { Val = (UInt32Value)226534440U };
|
||
C.Crosses crosses1 = new C.Crosses() { Val = C.CrossesValues.AutoZero };
|
||
C.CrossBetween crossBetween1 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory };
|
||
|
||
valueAxis1.Append(axisId3);
|
||
valueAxis1.Append(scaling1);
|
||
valueAxis1.Append(delete1);
|
||
valueAxis1.Append(axisPosition1);
|
||
valueAxis1.Append(majorGridlines1);
|
||
valueAxis1.Append(minorGridlines1);
|
||
valueAxis1.Append(numberingFormat1);
|
||
valueAxis1.Append(majorTickMark1);
|
||
valueAxis1.Append(minorTickMark1);
|
||
valueAxis1.Append(tickLabelPosition1);
|
||
valueAxis1.Append(chartShapeProperties3);
|
||
valueAxis1.Append(crossingAxis1);
|
||
valueAxis1.Append(crosses1);
|
||
valueAxis1.Append(crossBetween1);
|
||
|
||
C.ValueAxis valueAxis2 = new C.ValueAxis();
|
||
C.AxisId axisId4 = new C.AxisId() { Val = (UInt32Value)226534440U };
|
||
|
||
C.Scaling scaling2 = new C.Scaling();
|
||
C.Orientation orientation2 = new C.Orientation() { Val = C.OrientationValues.MinMax };
|
||
|
||
if (null != min)
|
||
{
|
||
C.MinAxisValue m = new C.MinAxisValue() { Val = (double)min };
|
||
scaling2.Append(m);
|
||
}
|
||
if (null != max)
|
||
{
|
||
C.MaxAxisValue m = new C.MaxAxisValue() { Val = (double)max };
|
||
scaling2.Append(m);
|
||
}
|
||
|
||
scaling2.Append(orientation2);
|
||
C.Delete delete2 = new C.Delete() { Val = false };
|
||
C.AxisPosition axisPosition2 = new C.AxisPosition() { Val = C.AxisPositionValues.Left };
|
||
|
||
C.MajorGridlines majorGridlines2 = new C.MajorGridlines();
|
||
|
||
C.ChartShapeProperties chartShapeProperties4 = new C.ChartShapeProperties();
|
||
A.Outline outline4 = new A.Outline() { Width = 12700 };
|
||
|
||
chartShapeProperties4.Append(outline4);
|
||
|
||
majorGridlines2.Append(chartShapeProperties4);
|
||
C.NumberingFormat numberingFormat2 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true };
|
||
C.MajorTickMark majorTickMark2 = new C.MajorTickMark() { Val = C.TickMarkValues.Outside };
|
||
C.MinorTickMark minorTickMark2 = new C.MinorTickMark() { Val = C.TickMarkValues.None };
|
||
C.TickLabelPosition tickLabelPosition2 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low };
|
||
|
||
C.ChartShapeProperties chartShapeProperties5 = new C.ChartShapeProperties();
|
||
A.Outline outline5 = new A.Outline() { Width = 38100 };
|
||
|
||
chartShapeProperties5.Append(outline5);
|
||
C.CrossingAxis crossingAxis2 = new C.CrossingAxis() { Val = (UInt32Value)224939760U };
|
||
C.Crosses crosses2 = new C.Crosses() { Val = C.CrossesValues.AutoZero };
|
||
C.CrossBetween crossBetween2 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory };
|
||
|
||
valueAxis2.Append(axisId4);
|
||
valueAxis2.Append(scaling2);
|
||
valueAxis2.Append(delete2);
|
||
valueAxis2.Append(axisPosition2);
|
||
valueAxis2.Append(majorGridlines2);
|
||
valueAxis2.Append(numberingFormat2);
|
||
valueAxis2.Append(majorTickMark2);
|
||
valueAxis2.Append(minorTickMark2);
|
||
valueAxis2.Append(tickLabelPosition2);
|
||
valueAxis2.Append(chartShapeProperties5);
|
||
valueAxis2.Append(crossingAxis2);
|
||
valueAxis2.Append(crosses2);
|
||
valueAxis2.Append(crossBetween2);
|
||
|
||
plotArea1.Append(layout1);
|
||
plotArea1.Append(scatterChart1);
|
||
plotArea1.Append(valueAxis1);
|
||
plotArea1.Append(valueAxis2);
|
||
C.PlotVisibleOnly plotVisibleOnly1 = new C.PlotVisibleOnly() { Val = true };
|
||
C.DisplayBlanksAs displayBlanksAs1 = new C.DisplayBlanksAs() { Val = C.DisplayBlanksAsValues.Gap };
|
||
C.ShowDataLabelsOverMaximum showDataLabelsOverMaximum1 = new C.ShowDataLabelsOverMaximum() { Val = false };
|
||
|
||
chart1.Append(autoTitleDeleted1);
|
||
chart1.Append(plotArea1);
|
||
chart1.Append(plotVisibleOnly1);
|
||
chart1.Append(displayBlanksAs1);
|
||
chart1.Append(showDataLabelsOverMaximum1);
|
||
|
||
C.PrintSettings printSettings1 = new C.PrintSettings();
|
||
C.HeaderFooter headerFooter1 = new C.HeaderFooter();
|
||
C.PageMargins pageMargins3 = new C.PageMargins() { Left = 0.70000000000000007D, Right = 0.70000000000000007D, Top = 0.75000000000000011D, Bottom = 0.75000000000000011D, Header = 0.30000000000000004D, Footer = 0.30000000000000004D };
|
||
C.PageSetup pageSetup2 = new C.PageSetup();
|
||
|
||
printSettings1.Append(headerFooter1);
|
||
printSettings1.Append(pageMargins3);
|
||
printSettings1.Append(pageSetup2);
|
||
|
||
chartSpace1.Append(date19041);
|
||
chartSpace1.Append(editingLanguage1);
|
||
chartSpace1.Append(roundedCorners1);
|
||
chartSpace1.Append(alternateContent2);
|
||
chartSpace1.Append(chart1);
|
||
chartSpace1.Append(printSettings1);
|
||
|
||
chartPart1.ChartSpace = chartSpace1;
|
||
}
|
||
|
||
// Generates content of chartPart2.
|
||
private void GenerateBendingChartPart(ChartPart chartPart2, double [] x, double [] y, double? min, double? max,
|
||
string threshold)
|
||
{
|
||
System.Collections.Generic.List<double> lines = new System.Collections.Generic.List<double>();
|
||
foreach (string t in threshold.Split(','))
|
||
{
|
||
double d;
|
||
if (double.TryParse(t.Trim(), out d)) { lines.Add(d); }
|
||
}
|
||
C.ChartSpace chartSpace2 = new C.ChartSpace();
|
||
chartSpace2.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
|
||
chartSpace2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
|
||
chartSpace2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||
C.Date1904 date19042 = new C.Date1904() { Val = false };
|
||
C.EditingLanguage editingLanguage2 = new C.EditingLanguage() { Val = "en-US" };
|
||
C.RoundedCorners roundedCorners2 = new C.RoundedCorners() { Val = false };
|
||
|
||
AlternateContent alternateContent3 = new AlternateContent();
|
||
alternateContent3.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
|
||
|
||
AlternateContentChoice alternateContentChoice3 = new AlternateContentChoice() { Requires = "c14" };
|
||
alternateContentChoice3.AddNamespaceDeclaration("c14", "http://schemas.microsoft.com/office/drawing/2007/8/2/chart");
|
||
C14.Style style3 = new C14.Style() { Val = 102 };
|
||
|
||
alternateContentChoice3.Append(style3);
|
||
|
||
AlternateContentFallback alternateContentFallback2 = new AlternateContentFallback();
|
||
C.Style style4 = new C.Style() { Val = 2 };
|
||
|
||
alternateContentFallback2.Append(style4);
|
||
|
||
alternateContent3.Append(alternateContentChoice3);
|
||
alternateContent3.Append(alternateContentFallback2);
|
||
|
||
C.Chart chart2 = new C.Chart();
|
||
C.AutoTitleDeleted autoTitleDeleted2 = new C.AutoTitleDeleted() { Val = true };
|
||
|
||
C.PlotArea plotArea2 = new C.PlotArea();
|
||
C.Layout layout2 = new C.Layout();
|
||
|
||
C.ScatterChart scatterChart2 = new C.ScatterChart();
|
||
C.ScatterStyle scatterStyle2 = new C.ScatterStyle() { Val = C.ScatterStyleValues.Line };
|
||
C.VaryColors varyColors2 = new C.VaryColors() { Val = false };
|
||
|
||
C.ScatterChartSeries scatterChartSeries2 = new C.ScatterChartSeries();
|
||
C.Smooth smooth2 = new DocumentFormat.OpenXml.Drawing.Charts.Smooth() { Val = false };
|
||
scatterChartSeries2.Append(smooth2);
|
||
C.Index index2 = new C.Index() { Val = (UInt32Value)0U };
|
||
C.Order order2 = new C.Order() { Val = (UInt32Value)0U };
|
||
|
||
C.SeriesText seriesText2 = new C.SeriesText();
|
||
C.NumericValue numericValue8 = new C.NumericValue();
|
||
numericValue8.Text = "Bend Angle";
|
||
|
||
seriesText2.Append(numericValue8);
|
||
|
||
C.ChartShapeProperties chartShapeProperties1 = new C.ChartShapeProperties();
|
||
|
||
A.Outline outline1 = new A.Outline(){ Width = 12700 };
|
||
|
||
A.SolidFill solidFill1 = new A.SolidFill();
|
||
A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex() { Val = "0070C0" };
|
||
|
||
solidFill1.Append(rgbColorModelHex1);
|
||
|
||
outline1.Append(solidFill1);
|
||
|
||
chartShapeProperties1.Append(outline1);
|
||
|
||
C.Marker marker1 = new C.Marker();
|
||
C.Symbol symbol1 = new C.Symbol() { Val = C.MarkerStyleValues.None };
|
||
|
||
marker1.Append(symbol1);
|
||
|
||
C.XValues xValues2 = new C.XValues();
|
||
|
||
C.NumberReference numberReference3 = new C.NumberReference();
|
||
C.Formula formula3 = new C.Formula();
|
||
formula3.Text = string.Format("Data!$C$2:$C${0}", 1 + x.Length);
|
||
|
||
C.NumberingCache numberingCache3 = new C.NumberingCache();
|
||
C.FormatCode formatCode3 = new C.FormatCode();
|
||
formatCode3.Text = "General";
|
||
C.PointCount pointCount3 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(x.Length) };
|
||
|
||
numberingCache3.Append(formatCode3);
|
||
numberingCache3.Append(pointCount3);
|
||
|
||
for (int i = 0; i < x.Length; i++)
|
||
{
|
||
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
||
p.Append(new C.NumericValue() { Text = x[i].ToString() });
|
||
numberingCache3.Append(p);
|
||
}
|
||
|
||
numberReference3.Append(formula3);
|
||
numberReference3.Append(numberingCache3);
|
||
|
||
xValues2.Append(numberReference3);
|
||
|
||
C.YValues yValues2 = new C.YValues();
|
||
|
||
C.NumberReference numberReference4 = new C.NumberReference();
|
||
C.Formula formula4 = new C.Formula();
|
||
formula4.Text = string.Format("Data!$G$2:$G${0}", 1 + y.Length);
|
||
|
||
C.NumberingCache numberingCache4 = new C.NumberingCache();
|
||
C.FormatCode formatCode4 = new C.FormatCode();
|
||
formatCode4.Text = "General";
|
||
C.PointCount pointCount4 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(y.Length) };
|
||
|
||
numberingCache4.Append(formatCode4);
|
||
numberingCache4.Append(pointCount4);
|
||
for (int i = 0; i < y.Length; i++)
|
||
{
|
||
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
||
p.Append(new C.NumericValue() { Text = y[i].ToString() });
|
||
numberingCache4.Append(p);
|
||
}
|
||
|
||
numberReference4.Append(formula4);
|
||
numberReference4.Append(numberingCache4);
|
||
|
||
yValues2.Append(numberReference4);
|
||
//C.Smooth smooth2 = new C.Smooth() { Val = true };
|
||
|
||
scatterChartSeries2.Append(index2);
|
||
scatterChartSeries2.Append(order2);
|
||
scatterChartSeries2.Append(seriesText2);
|
||
scatterChartSeries2.Append(chartShapeProperties1);
|
||
scatterChartSeries2.Append(marker1);
|
||
scatterChartSeries2.Append(xValues2);
|
||
scatterChartSeries2.Append(yValues2);
|
||
//scatterChartSeries2.Append(smooth2);
|
||
|
||
C.DataLabels dataLabels2 = new C.DataLabels();
|
||
C.ShowLegendKey showLegendKey2 = new C.ShowLegendKey() { Val = false };
|
||
C.ShowValue showValue2 = new C.ShowValue() { Val = false };
|
||
C.ShowCategoryName showCategoryName2 = new C.ShowCategoryName() { Val = false };
|
||
C.ShowSeriesName showSeriesName2 = new C.ShowSeriesName() { Val = false };
|
||
C.ShowPercent showPercent2 = new C.ShowPercent() { Val = false };
|
||
C.ShowBubbleSize showBubbleSize2 = new C.ShowBubbleSize() { Val = false };
|
||
|
||
dataLabels2.Append(showLegendKey2);
|
||
dataLabels2.Append(showValue2);
|
||
dataLabels2.Append(showCategoryName2);
|
||
dataLabels2.Append(showSeriesName2);
|
||
dataLabels2.Append(showPercent2);
|
||
dataLabels2.Append(showBubbleSize2);
|
||
C.AxisId axisId5 = new C.AxisId() { Val = (UInt32Value)224938192U };
|
||
C.AxisId axisId6 = new C.AxisId() { Val = (UInt32Value)224938976U };
|
||
|
||
scatterChart2.Append(scatterStyle2);
|
||
scatterChart2.Append(varyColors2);
|
||
scatterChart2.Append(scatterChartSeries2);
|
||
|
||
for (int i = 0; i < lines.Count; i++)
|
||
{
|
||
|
||
C.ScatterChartSeries scatterChartSeries = new C.ScatterChartSeries();
|
||
C.Smooth smooth = new DocumentFormat.OpenXml.Drawing.Charts.Smooth() { Val = false };
|
||
scatterChartSeries.Append(smooth);
|
||
C.Index index = new C.Index() { Val = (UInt32Value)System.Convert.ToUInt32(5 + i) };
|
||
C.Order order = new C.Order() { Val = (UInt32Value)System.Convert.ToUInt32(5 + i) };
|
||
|
||
C.SeriesText seriesText = new C.SeriesText();
|
||
C.NumericValue numericValue31 = new C.NumericValue();
|
||
numericValue31.Text = string.Format("Threshold{0}", 1 + i);
|
||
|
||
seriesText.Append(numericValue31);
|
||
|
||
C.ChartShapeProperties chartShapeProperties = new C.ChartShapeProperties();
|
||
|
||
A.Outline outline = new A.Outline(){ Width = 12700 };
|
||
|
||
A.SolidFill solidFill = new A.SolidFill();
|
||
A.RgbColorModelHex rgbColorModelHex = new A.RgbColorModelHex() { Val = "A52A2A" };
|
||
|
||
solidFill.Append(rgbColorModelHex);
|
||
|
||
outline.Append(solidFill);
|
||
|
||
chartShapeProperties.Append(outline);
|
||
|
||
C.Marker marker = new C.Marker();
|
||
C.Symbol symbol = new C.Symbol() { Val = C.MarkerStyleValues.None };
|
||
|
||
marker.Append(symbol);
|
||
|
||
C.XValues xValues = new C.XValues();
|
||
|
||
C.NumberLiteral numberLiteral1 = new C.NumberLiteral();
|
||
C.FormatCode formatCode13 = new C.FormatCode();
|
||
formatCode13.Text = "General";
|
||
C.PointCount pointCount13 = new C.PointCount() { Val = (UInt32Value)2U };
|
||
|
||
C.NumericPoint numericPoint25 = new C.NumericPoint() { Index = (UInt32Value)0U };
|
||
C.NumericValue numericValue32 = new C.NumericValue();
|
||
numericValue32.Text = x.Min().ToString();
|
||
|
||
numericPoint25.Append(numericValue32);
|
||
|
||
C.NumericPoint numericPoint26 = new C.NumericPoint() { Index = (UInt32Value)1U };
|
||
C.NumericValue numericValue33 = new C.NumericValue();
|
||
numericValue33.Text = x.Max().ToString();
|
||
|
||
numericPoint26.Append(numericValue33);
|
||
|
||
numberLiteral1.Append(formatCode13);
|
||
numberLiteral1.Append(pointCount13);
|
||
numberLiteral1.Append(numericPoint25);
|
||
numberLiteral1.Append(numericPoint26);
|
||
|
||
xValues.Append(numberLiteral1);
|
||
|
||
C.YValues yValues = new C.YValues();
|
||
|
||
C.NumberLiteral numberLiteral2 = new C.NumberLiteral();
|
||
C.FormatCode formatCode14 = new C.FormatCode();
|
||
formatCode14.Text = "General";
|
||
C.PointCount pointCount14 = new C.PointCount() { Val = (UInt32Value)2U };
|
||
|
||
C.NumericPoint numericPoint27 = new C.NumericPoint() { Index = (UInt32Value)0U };
|
||
C.NumericValue numericValue34 = new C.NumericValue();
|
||
numericValue34.Text = lines[i].ToString();
|
||
|
||
numericPoint27.Append(numericValue34);
|
||
|
||
C.NumericPoint numericPoint28 = new C.NumericPoint() { Index = (UInt32Value)1U };
|
||
C.NumericValue numericValue35 = new C.NumericValue();
|
||
numericValue35.Text = lines[i].ToString();
|
||
|
||
numericPoint28.Append(numericValue35);
|
||
|
||
numberLiteral2.Append(formatCode14);
|
||
numberLiteral2.Append(pointCount14);
|
||
numberLiteral2.Append(numericPoint27);
|
||
numberLiteral2.Append(numericPoint28);
|
||
|
||
yValues.Append(numberLiteral2);
|
||
//C.Smooth smooth = new C.Smooth() { Val = true };
|
||
|
||
C.ChartShapeProperties chartShapeProperties10 = new C.ChartShapeProperties();
|
||
|
||
A.Outline outline10 = new A.Outline(){ Width = 12700 };
|
||
|
||
A.SolidFill solidFill2 = new A.SolidFill();
|
||
A.SchemeColor schemeColor1 = new A.SchemeColor() { Val = A.SchemeColorValues.Text1 };
|
||
|
||
solidFill2.Append(schemeColor1);
|
||
|
||
outline10.Append(solidFill2);
|
||
|
||
chartShapeProperties10.Append(outline10);
|
||
|
||
scatterChartSeries.Append(index);
|
||
scatterChartSeries.Append(order);
|
||
scatterChartSeries.Append(seriesText);
|
||
scatterChartSeries.Append(chartShapeProperties10);
|
||
scatterChartSeries.Append(marker);
|
||
scatterChartSeries.Append(xValues);
|
||
scatterChartSeries.Append(yValues);
|
||
//scatterChartSeries.Append(smooth);
|
||
scatterChart2.Append(scatterChartSeries);
|
||
}
|
||
|
||
scatterChart2.Append(dataLabels2);
|
||
scatterChart2.Append(axisId5);
|
||
scatterChart2.Append(axisId6);
|
||
|
||
C.ValueAxis valueAxis3 = new C.ValueAxis();
|
||
C.AxisId axisId7 = new C.AxisId() { Val = (UInt32Value)224938192U };
|
||
|
||
C.Scaling scaling3 = new C.Scaling();
|
||
C.Orientation orientation3 = new C.Orientation() { Val = C.OrientationValues.MinMax };
|
||
|
||
scaling3.Append(orientation3);
|
||
C.Delete delete3 = new C.Delete() { Val = false };
|
||
C.AxisPosition axisPosition3 = new C.AxisPosition() { Val = C.AxisPositionValues.Bottom };
|
||
C.MajorGridlines majorGridlines3 = new C.MajorGridlines();
|
||
|
||
C.MinorGridlines minorGridlines2 = new C.MinorGridlines();
|
||
|
||
C.ChartShapeProperties chartShapeProperties6 = new C.ChartShapeProperties();
|
||
A.Outline outline6 = new A.Outline() { Width = 12700 };
|
||
|
||
chartShapeProperties6.Append(outline6);
|
||
|
||
minorGridlines2.Append(chartShapeProperties6);
|
||
C.NumberingFormat numberingFormat3 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true };
|
||
C.MajorTickMark majorTickMark3 = new C.MajorTickMark() { Val = C.TickMarkValues.Outside };
|
||
C.MinorTickMark minorTickMark3 = new C.MinorTickMark() { Val = C.TickMarkValues.None };
|
||
C.TickLabelPosition tickLabelPosition3 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.NextTo };
|
||
|
||
C.ChartShapeProperties chartShapeProperties7 = new C.ChartShapeProperties();
|
||
A.Outline outline7 = new A.Outline() { Width = 38100 };
|
||
|
||
chartShapeProperties7.Append(outline7);
|
||
C.CrossingAxis crossingAxis3 = new C.CrossingAxis() { Val = (UInt32Value)224938976U };
|
||
C.Crosses crosses3 = new C.Crosses() { Val = C.CrossesValues.AutoZero };
|
||
C.CrossBetween crossBetween3 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory };
|
||
|
||
valueAxis3.Append(axisId7);
|
||
valueAxis3.Append(scaling3);
|
||
valueAxis3.Append(delete3);
|
||
valueAxis3.Append(axisPosition3);
|
||
valueAxis3.Append(majorGridlines3);
|
||
valueAxis3.Append(minorGridlines2);
|
||
valueAxis3.Append(numberingFormat3);
|
||
valueAxis3.Append(majorTickMark3);
|
||
valueAxis3.Append(minorTickMark3);
|
||
valueAxis3.Append(tickLabelPosition3);
|
||
valueAxis3.Append(chartShapeProperties7);
|
||
valueAxis3.Append(crossingAxis3);
|
||
valueAxis3.Append(crosses3);
|
||
valueAxis3.Append(crossBetween3);
|
||
|
||
C.ValueAxis valueAxis4 = new C.ValueAxis();
|
||
C.AxisId axisId8 = new C.AxisId() { Val = (UInt32Value)224938976U };
|
||
|
||
C.Scaling scaling4 = new C.Scaling();
|
||
C.Orientation orientation4 = new C.Orientation() { Val = C.OrientationValues.MinMax };
|
||
if (null != min)
|
||
{
|
||
C.MinAxisValue m = new C.MinAxisValue() { Val = (double)min };
|
||
scaling4.Append(m);
|
||
}
|
||
if (null != max)
|
||
{
|
||
C.MaxAxisValue m = new C.MaxAxisValue() { Val = (double)max };
|
||
scaling4.Append(m);
|
||
}
|
||
scaling4.Append(orientation4);
|
||
C.Delete delete4 = new C.Delete() { Val = false };
|
||
C.AxisPosition axisPosition4 = new C.AxisPosition() { Val = C.AxisPositionValues.Left };
|
||
|
||
C.MajorGridlines majorGridlines4 = new C.MajorGridlines();
|
||
|
||
C.ChartShapeProperties chartShapeProperties8 = new C.ChartShapeProperties();
|
||
A.Outline outline8 = new A.Outline() { Width = 12700 };
|
||
|
||
chartShapeProperties8.Append(outline8);
|
||
|
||
majorGridlines4.Append(chartShapeProperties8);
|
||
C.NumberingFormat numberingFormat4 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true };
|
||
C.MajorTickMark majorTickMark4 = new C.MajorTickMark() { Val = C.TickMarkValues.Outside };
|
||
C.MinorTickMark minorTickMark4 = new C.MinorTickMark() { Val = C.TickMarkValues.None };
|
||
C.TickLabelPosition tickLabelPosition4 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low };
|
||
|
||
C.ChartShapeProperties chartShapeProperties9 = new C.ChartShapeProperties();
|
||
A.Outline outline9 = new A.Outline() { Width = 38100 };
|
||
|
||
chartShapeProperties9.Append(outline9);
|
||
C.CrossingAxis crossingAxis4 = new C.CrossingAxis() { Val = (UInt32Value)224938192U };
|
||
C.Crosses crosses4 = new C.Crosses() { Val = C.CrossesValues.AutoZero };
|
||
C.CrossBetween crossBetween4 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory };
|
||
|
||
valueAxis4.Append(axisId8);
|
||
valueAxis4.Append(scaling4);
|
||
valueAxis4.Append(delete4);
|
||
valueAxis4.Append(axisPosition4);
|
||
valueAxis4.Append(majorGridlines4);
|
||
valueAxis4.Append(numberingFormat4);
|
||
valueAxis4.Append(majorTickMark4);
|
||
valueAxis4.Append(minorTickMark4);
|
||
valueAxis4.Append(tickLabelPosition4);
|
||
valueAxis4.Append(chartShapeProperties9);
|
||
valueAxis4.Append(crossingAxis4);
|
||
valueAxis4.Append(crosses4);
|
||
valueAxis4.Append(crossBetween4);
|
||
|
||
plotArea2.Append(layout2);
|
||
plotArea2.Append(scatterChart2);
|
||
plotArea2.Append(valueAxis3);
|
||
plotArea2.Append(valueAxis4);
|
||
C.PlotVisibleOnly plotVisibleOnly2 = new C.PlotVisibleOnly() { Val = true };
|
||
C.DisplayBlanksAs displayBlanksAs2 = new C.DisplayBlanksAs() { Val = C.DisplayBlanksAsValues.Gap };
|
||
C.ShowDataLabelsOverMaximum showDataLabelsOverMaximum2 = new C.ShowDataLabelsOverMaximum() { Val = false };
|
||
|
||
chart2.Append(autoTitleDeleted2);
|
||
chart2.Append(plotArea2);
|
||
chart2.Append(plotVisibleOnly2);
|
||
chart2.Append(displayBlanksAs2);
|
||
chart2.Append(showDataLabelsOverMaximum2);
|
||
|
||
C.PrintSettings printSettings2 = new C.PrintSettings();
|
||
C.HeaderFooter headerFooter2 = new C.HeaderFooter();
|
||
C.PageMargins pageMargins4 = new C.PageMargins() { Left = 0.70000000000000007D, Right = 0.70000000000000007D, Top = 0.75000000000000011D, Bottom = 0.75000000000000011D, Header = 0.30000000000000004D, Footer = 0.30000000000000004D };
|
||
C.PageSetup pageSetup3 = new C.PageSetup();
|
||
|
||
printSettings2.Append(headerFooter2);
|
||
printSettings2.Append(pageMargins4);
|
||
printSettings2.Append(pageSetup3);
|
||
|
||
chartSpace2.Append(date19042);
|
||
chartSpace2.Append(editingLanguage2);
|
||
chartSpace2.Append(roundedCorners2);
|
||
chartSpace2.Append(alternateContent3);
|
||
chartSpace2.Append(chart2);
|
||
chartSpace2.Append(printSettings2);
|
||
|
||
chartPart2.ChartSpace = chartSpace2;
|
||
}
|
||
|
||
// Generates content of chartPart3.
|
||
private void GenerateAccelChartContent(ChartPart chartPart3, double [] x, double [] y, double? min, double? max,
|
||
string thresholds)
|
||
{
|
||
System.Collections.Generic.List<double> lines = new System.Collections.Generic.List<double>();
|
||
foreach (string t in thresholds.Split(','))
|
||
{
|
||
double d;
|
||
if (double.TryParse(t.Trim(), out d)) { lines.Add(d); }
|
||
}
|
||
C.ChartSpace chartSpace3 = new C.ChartSpace();
|
||
chartSpace3.AddNamespaceDeclaration("c", "http://schemas.openxmlformats.org/drawingml/2006/chart");
|
||
chartSpace3.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
|
||
chartSpace3.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||
C.Date1904 date19043 = new C.Date1904() { Val = false };
|
||
C.EditingLanguage editingLanguage3 = new C.EditingLanguage() { Val = "en-US" };
|
||
C.RoundedCorners roundedCorners3 = new C.RoundedCorners() { Val = false };
|
||
|
||
AlternateContent alternateContent4 = new AlternateContent();
|
||
alternateContent4.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
|
||
|
||
AlternateContentChoice alternateContentChoice4 = new AlternateContentChoice() { Requires = "c14" };
|
||
alternateContentChoice4.AddNamespaceDeclaration("c14", "http://schemas.microsoft.com/office/drawing/2007/8/2/chart");
|
||
C14.Style style5 = new C14.Style() { Val = 102 };
|
||
|
||
alternateContentChoice4.Append(style5);
|
||
|
||
AlternateContentFallback alternateContentFallback3 = new AlternateContentFallback();
|
||
C.Style style6 = new C.Style() { Val = 2 };
|
||
|
||
alternateContentFallback3.Append(style6);
|
||
|
||
alternateContent4.Append(alternateContentChoice4);
|
||
alternateContent4.Append(alternateContentFallback3);
|
||
|
||
C.Chart chart3 = new C.Chart();
|
||
C.AutoTitleDeleted autoTitleDeleted3 = new C.AutoTitleDeleted() { Val = true };
|
||
|
||
C.PlotArea plotArea3 = new C.PlotArea();
|
||
C.Layout layout3 = new C.Layout();
|
||
|
||
C.ScatterChart scatterChart3 = new C.ScatterChart();
|
||
C.ScatterStyle scatterStyle3 = new C.ScatterStyle() { Val = C.ScatterStyleValues.Line };
|
||
C.VaryColors varyColors3 = new C.VaryColors() { Val = false };
|
||
|
||
C.ScatterChartSeries scatterChartSeries3 = new C.ScatterChartSeries();
|
||
C.Smooth smooth3 = new DocumentFormat.OpenXml.Drawing.Charts.Smooth() { Val = false };
|
||
scatterChartSeries3.Append(smooth3);
|
||
C.Index index3 = new C.Index() { Val = (UInt32Value)0U };
|
||
C.Order order3 = new C.Order() { Val = (UInt32Value)0U };
|
||
|
||
C.SeriesText seriesText3 = new C.SeriesText();
|
||
C.NumericValue numericValue15 = new C.NumericValue();
|
||
numericValue15.Text = "Accel";
|
||
|
||
seriesText3.Append(numericValue15);
|
||
|
||
C.ChartShapeProperties chartShapeProperties1 = new C.ChartShapeProperties();
|
||
|
||
A.Outline outline1 = new A.Outline(){ Width = 12700 };
|
||
|
||
A.SolidFill solidFill1 = new A.SolidFill();
|
||
A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex() { Val = "0070C0" };
|
||
|
||
solidFill1.Append(rgbColorModelHex1);
|
||
|
||
outline1.Append(solidFill1);
|
||
|
||
chartShapeProperties1.Append(outline1);
|
||
|
||
C.Marker marker1 = new C.Marker();
|
||
C.Symbol symbol1 = new C.Symbol() { Val = C.MarkerStyleValues.None };
|
||
|
||
marker1.Append(symbol1);
|
||
|
||
C.XValues xValues3 = new C.XValues();
|
||
|
||
C.NumberReference numberReference5 = new C.NumberReference();
|
||
C.Formula formula5 = new C.Formula();
|
||
formula5.Text = string.Format("Data!$A$2:$A${0}", x.Length+1);
|
||
|
||
C.NumberingCache numberingCache5 = new C.NumberingCache();
|
||
C.FormatCode formatCode5 = new C.FormatCode();
|
||
formatCode5.Text = "General";
|
||
C.PointCount pointCount5 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(x.Length) };
|
||
|
||
numberingCache5.Append(formatCode5);
|
||
numberingCache5.Append(pointCount5);
|
||
|
||
for (int i = 0; i < x.Length; i++)
|
||
{
|
||
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
||
p.Append(new C.NumericValue() { Text = x[i].ToString() });
|
||
numberingCache5.Append(p);
|
||
}
|
||
|
||
numberReference5.Append(formula5);
|
||
numberReference5.Append(numberingCache5);
|
||
|
||
xValues3.Append(numberReference5);
|
||
|
||
C.YValues yValues3 = new C.YValues();
|
||
|
||
C.NumberReference numberReference6 = new C.NumberReference();
|
||
C.Formula formula6 = new C.Formula();
|
||
formula6.Text = string.Format("Data!$B$2:$B${0}", 1 + y.Length);
|
||
|
||
C.NumberingCache numberingCache6 = new C.NumberingCache();
|
||
C.FormatCode formatCode6 = new C.FormatCode();
|
||
formatCode6.Text = "General";
|
||
C.PointCount pointCount6 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(y.Length) };
|
||
|
||
numberingCache6.Append(formatCode6);
|
||
numberingCache6.Append(pointCount6);
|
||
for (int i = 0; i < y.Length; i++)
|
||
{
|
||
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
||
p.Append(new C.NumericValue() { Text = y[i].ToString() });
|
||
numberingCache6.Append(p);
|
||
}
|
||
|
||
numberReference6.Append(formula6);
|
||
numberReference6.Append(numberingCache6);
|
||
|
||
yValues3.Append(numberReference6);
|
||
//C.Smooth smooth3 = new C.Smooth() { Val = true };
|
||
|
||
scatterChartSeries3.Append(index3);
|
||
scatterChartSeries3.Append(order3);
|
||
scatterChartSeries3.Append(seriesText3);
|
||
scatterChartSeries3.Append(chartShapeProperties1);
|
||
scatterChartSeries3.Append(marker1);
|
||
scatterChartSeries3.Append(xValues3);
|
||
scatterChartSeries3.Append(yValues3);
|
||
//scatterChartSeries3.Append(smooth3);
|
||
|
||
C.DataLabels dataLabels3 = new C.DataLabels();
|
||
C.ShowLegendKey showLegendKey3 = new C.ShowLegendKey() { Val = false };
|
||
C.ShowValue showValue3 = new C.ShowValue() { Val = false };
|
||
C.ShowCategoryName showCategoryName3 = new C.ShowCategoryName() { Val = false };
|
||
C.ShowSeriesName showSeriesName3 = new C.ShowSeriesName() { Val = false };
|
||
C.ShowPercent showPercent3 = new C.ShowPercent() { Val = false };
|
||
C.ShowBubbleSize showBubbleSize3 = new C.ShowBubbleSize() { Val = false };
|
||
|
||
dataLabels3.Append(showLegendKey3);
|
||
dataLabels3.Append(showValue3);
|
||
dataLabels3.Append(showCategoryName3);
|
||
dataLabels3.Append(showSeriesName3);
|
||
dataLabels3.Append(showPercent3);
|
||
dataLabels3.Append(showBubbleSize3);
|
||
C.AxisId axisId9 = new C.AxisId() { Val = (UInt32Value)224936624U };
|
||
C.AxisId axisId10 = new C.AxisId() { Val = (UInt32Value)224938584U };
|
||
|
||
scatterChart3.Append(scatterStyle3);
|
||
scatterChart3.Append(varyColors3);
|
||
|
||
for (int i = 0; i < lines.Count; i++)
|
||
{
|
||
|
||
C.ScatterChartSeries scatterChartSeries = new C.ScatterChartSeries();
|
||
C.Smooth smooth = new DocumentFormat.OpenXml.Drawing.Charts.Smooth() { Val = false };
|
||
scatterChartSeries.Append(smooth);
|
||
C.Index index = new C.Index() { Val = (UInt32Value)System.Convert.ToUInt32(5 + i) };
|
||
C.Order order = new C.Order() { Val = (UInt32Value)System.Convert.ToUInt32(5 + i) };
|
||
|
||
C.SeriesText seriesText = new C.SeriesText();
|
||
C.NumericValue numericValue31 = new C.NumericValue();
|
||
numericValue31.Text = string.Format("Threshold{0}", 1 + i);
|
||
|
||
seriesText.Append(numericValue31);
|
||
|
||
C.Marker marker = new C.Marker();
|
||
C.Symbol symbol = new C.Symbol() { Val = C.MarkerStyleValues.None };
|
||
|
||
marker.Append(symbol);
|
||
|
||
C.XValues xValues = new C.XValues();
|
||
|
||
C.NumberLiteral numberLiteral1 = new C.NumberLiteral();
|
||
C.FormatCode formatCode13 = new C.FormatCode();
|
||
formatCode13.Text = "General";
|
||
C.PointCount pointCount13 = new C.PointCount() { Val = (UInt32Value)2U };
|
||
|
||
C.NumericPoint numericPoint25 = new C.NumericPoint() { Index = (UInt32Value)0U };
|
||
C.NumericValue numericValue32 = new C.NumericValue();
|
||
numericValue32.Text = x.Min().ToString();
|
||
|
||
numericPoint25.Append(numericValue32);
|
||
|
||
C.NumericPoint numericPoint26 = new C.NumericPoint() { Index = (UInt32Value)1U };
|
||
C.NumericValue numericValue33 = new C.NumericValue();
|
||
numericValue33.Text = x.Max().ToString();
|
||
|
||
numericPoint26.Append(numericValue33);
|
||
|
||
numberLiteral1.Append(formatCode13);
|
||
numberLiteral1.Append(pointCount13);
|
||
numberLiteral1.Append(numericPoint25);
|
||
numberLiteral1.Append(numericPoint26);
|
||
|
||
xValues.Append(numberLiteral1);
|
||
|
||
C.YValues yValues = new C.YValues();
|
||
|
||
C.NumberLiteral numberLiteral2 = new C.NumberLiteral();
|
||
C.FormatCode formatCode14 = new C.FormatCode();
|
||
formatCode14.Text = "General";
|
||
C.PointCount pointCount14 = new C.PointCount() { Val = (UInt32Value)2U };
|
||
|
||
C.NumericPoint numericPoint27 = new C.NumericPoint() { Index = (UInt32Value)0U };
|
||
C.NumericValue numericValue34 = new C.NumericValue();
|
||
numericValue34.Text = lines[i].ToString();
|
||
|
||
numericPoint27.Append(numericValue34);
|
||
|
||
C.NumericPoint numericPoint28 = new C.NumericPoint() { Index = (UInt32Value)1U };
|
||
C.NumericValue numericValue35 = new C.NumericValue();
|
||
numericValue35.Text = lines[i].ToString();
|
||
|
||
numericPoint28.Append(numericValue35);
|
||
|
||
numberLiteral2.Append(formatCode14);
|
||
numberLiteral2.Append(pointCount14);
|
||
numberLiteral2.Append(numericPoint27);
|
||
numberLiteral2.Append(numericPoint28);
|
||
|
||
yValues.Append(numberLiteral2);
|
||
//C.Smooth smooth = new C.Smooth() { Val = true };
|
||
|
||
C.ChartShapeProperties chartShapeProperties = new C.ChartShapeProperties();
|
||
|
||
A.Outline outline = new A.Outline(){ Width = 12700 };
|
||
|
||
A.SolidFill solidFill = new A.SolidFill();
|
||
A.SchemeColor schemeColor = new A.SchemeColor() { Val = A.SchemeColorValues.Text1 };
|
||
|
||
solidFill.Append(schemeColor);
|
||
|
||
outline.Append(solidFill);
|
||
|
||
chartShapeProperties.Append(outline);
|
||
|
||
scatterChartSeries.Append(index);
|
||
scatterChartSeries.Append(order);
|
||
scatterChartSeries.Append(seriesText);
|
||
scatterChartSeries.Append(chartShapeProperties);
|
||
scatterChartSeries.Append(marker);
|
||
scatterChartSeries.Append(xValues);
|
||
scatterChartSeries.Append(yValues);
|
||
//scatterChartSeries.Append(smooth);
|
||
scatterChart3.Append(scatterChartSeries);
|
||
}
|
||
|
||
scatterChart3.Append(scatterChartSeries3);
|
||
scatterChart3.Append(dataLabels3);
|
||
scatterChart3.Append(axisId9);
|
||
scatterChart3.Append(axisId10);
|
||
|
||
C.ValueAxis valueAxis5 = new C.ValueAxis();
|
||
C.AxisId axisId11 = new C.AxisId() { Val = (UInt32Value)224936624U };
|
||
|
||
C.Scaling scaling5 = new C.Scaling();
|
||
C.Orientation orientation5 = new C.Orientation() { Val = C.OrientationValues.MinMax };
|
||
|
||
scaling5.Append(orientation5);
|
||
C.Delete delete5 = new C.Delete() { Val = false };
|
||
C.AxisPosition axisPosition5 = new C.AxisPosition() { Val = C.AxisPositionValues.Bottom };
|
||
|
||
C.MajorGridlines majorGridlines5 = new C.MajorGridlines();
|
||
|
||
C.ChartShapeProperties chartShapeProperties10 = new C.ChartShapeProperties();
|
||
A.Outline outline10 = new A.Outline() { Width = 12700 };
|
||
|
||
chartShapeProperties10.Append(outline10);
|
||
|
||
majorGridlines5.Append(chartShapeProperties10);
|
||
C.MinorGridlines minorGridlines3 = new C.MinorGridlines();
|
||
C.NumberingFormat numberingFormat5 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true };
|
||
C.MajorTickMark majorTickMark5 = new C.MajorTickMark() { Val = C.TickMarkValues.Outside };
|
||
C.MinorTickMark minorTickMark5 = new C.MinorTickMark() { Val = C.TickMarkValues.None };
|
||
C.TickLabelPosition tickLabelPosition5 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low };
|
||
|
||
C.ChartShapeProperties chartShapeProperties11 = new C.ChartShapeProperties();
|
||
A.Outline outline11 = new A.Outline() { Width = 38100 };
|
||
|
||
chartShapeProperties11.Append(outline11);
|
||
C.CrossingAxis crossingAxis5 = new C.CrossingAxis() { Val = (UInt32Value)224938584U };
|
||
C.Crosses crosses5 = new C.Crosses() { Val = C.CrossesValues.AutoZero };
|
||
C.CrossBetween crossBetween5 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory };
|
||
|
||
valueAxis5.Append(axisId11);
|
||
valueAxis5.Append(scaling5);
|
||
valueAxis5.Append(delete5);
|
||
valueAxis5.Append(axisPosition5);
|
||
valueAxis5.Append(majorGridlines5);
|
||
valueAxis5.Append(minorGridlines3);
|
||
valueAxis5.Append(numberingFormat5);
|
||
valueAxis5.Append(majorTickMark5);
|
||
valueAxis5.Append(minorTickMark5);
|
||
valueAxis5.Append(tickLabelPosition5);
|
||
valueAxis5.Append(chartShapeProperties11);
|
||
valueAxis5.Append(crossingAxis5);
|
||
valueAxis5.Append(crosses5);
|
||
valueAxis5.Append(crossBetween5);
|
||
|
||
C.ValueAxis valueAxis6 = new C.ValueAxis();
|
||
C.AxisId axisId12 = new C.AxisId() { Val = (UInt32Value)224938584U };
|
||
|
||
C.Scaling scaling6 = new C.Scaling();
|
||
C.Orientation orientation6 = new C.Orientation() { Val = C.OrientationValues.MinMax };
|
||
if (null != min)
|
||
{
|
||
C.MinAxisValue m = new C.MinAxisValue() { Val = (double)min };
|
||
scaling6.Append(m);
|
||
}
|
||
if (null != max)
|
||
{
|
||
C.MaxAxisValue m = new C.MaxAxisValue() { Val = (double)max };
|
||
scaling6.Append(m);
|
||
}
|
||
scaling6.Append(orientation6);
|
||
C.Delete delete6 = new C.Delete() { Val = false };
|
||
C.AxisPosition axisPosition6 = new C.AxisPosition() { Val = C.AxisPositionValues.Left };
|
||
|
||
C.MajorGridlines majorGridlines6 = new C.MajorGridlines();
|
||
|
||
C.ChartShapeProperties chartShapeProperties12 = new C.ChartShapeProperties();
|
||
A.Outline outline12 = new A.Outline() { Width = 12700 };
|
||
|
||
chartShapeProperties12.Append(outline12);
|
||
|
||
majorGridlines6.Append(chartShapeProperties12);
|
||
C.NumberingFormat numberingFormat6 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true };
|
||
C.MajorTickMark majorTickMark6 = new C.MajorTickMark() { Val = C.TickMarkValues.Outside };
|
||
C.MinorTickMark minorTickMark6 = new C.MinorTickMark() { Val = C.TickMarkValues.None };
|
||
C.TickLabelPosition tickLabelPosition6 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low };
|
||
|
||
C.ChartShapeProperties chartShapeProperties13 = new C.ChartShapeProperties();
|
||
A.Outline outline13 = new A.Outline() { Width = 38100 };
|
||
|
||
chartShapeProperties13.Append(outline13);
|
||
C.CrossingAxis crossingAxis6 = new C.CrossingAxis() { Val = (UInt32Value)224936624U };
|
||
C.Crosses crosses6 = new C.Crosses() { Val = C.CrossesValues.AutoZero };
|
||
C.CrossBetween crossBetween6 = new C.CrossBetween() { Val = C.CrossBetweenValues.MidpointCategory };
|
||
|
||
valueAxis6.Append(axisId12);
|
||
valueAxis6.Append(scaling6);
|
||
valueAxis6.Append(delete6);
|
||
valueAxis6.Append(axisPosition6);
|
||
valueAxis6.Append(majorGridlines6);
|
||
valueAxis6.Append(numberingFormat6);
|
||
valueAxis6.Append(majorTickMark6);
|
||
valueAxis6.Append(minorTickMark6);
|
||
valueAxis6.Append(tickLabelPosition6);
|
||
valueAxis6.Append(chartShapeProperties13);
|
||
valueAxis6.Append(crossingAxis6);
|
||
valueAxis6.Append(crosses6);
|
||
valueAxis6.Append(crossBetween6);
|
||
|
||
plotArea3.Append(layout3);
|
||
plotArea3.Append(scatterChart3);
|
||
plotArea3.Append(valueAxis5);
|
||
plotArea3.Append(valueAxis6);
|
||
C.PlotVisibleOnly plotVisibleOnly3 = new C.PlotVisibleOnly() { Val = true };
|
||
C.DisplayBlanksAs displayBlanksAs3 = new C.DisplayBlanksAs() { Val = C.DisplayBlanksAsValues.Gap };
|
||
C.ShowDataLabelsOverMaximum showDataLabelsOverMaximum3 = new C.ShowDataLabelsOverMaximum() { Val = false };
|
||
|
||
chart3.Append(autoTitleDeleted3);
|
||
chart3.Append(plotArea3);
|
||
chart3.Append(plotVisibleOnly3);
|
||
chart3.Append(displayBlanksAs3);
|
||
chart3.Append(showDataLabelsOverMaximum3);
|
||
|
||
C.PrintSettings printSettings3 = new C.PrintSettings();
|
||
C.HeaderFooter headerFooter3 = new C.HeaderFooter();
|
||
C.PageMargins pageMargins5 = new C.PageMargins() { Left = 0.70000000000000007D, Right = 0.70000000000000007D, Top = 0.75000000000000011D, Bottom = 0.75000000000000011D, Header = 0.30000000000000004D, Footer = 0.30000000000000004D };
|
||
C.PageSetup pageSetup4 = new C.PageSetup() { Orientation = C.PageSetupOrientationValues.Landscape };
|
||
|
||
printSettings3.Append(headerFooter3);
|
||
printSettings3.Append(pageMargins5);
|
||
printSettings3.Append(pageSetup4);
|
||
|
||
chartSpace3.Append(date19043);
|
||
chartSpace3.Append(editingLanguage3);
|
||
chartSpace3.Append(roundedCorners3);
|
||
chartSpace3.Append(alternateContent4);
|
||
chartSpace3.Append(chart3);
|
||
chartSpace3.Append(printSettings3);
|
||
|
||
chartPart3.ChartSpace = chartSpace3;
|
||
}
|
||
|
||
// Generates content of spreadsheetPrinterSettingsPart1.
|
||
private void GenerateSpreadsheetPrinterSettingsPart1Content(SpreadsheetPrinterSettingsPart spreadsheetPrinterSettingsPart1)
|
||
{
|
||
System.IO.Stream data = GetBinaryDataStream(spreadsheetPrinterSettingsPart1Data);
|
||
spreadsheetPrinterSettingsPart1.FeedData(data);
|
||
data.Close();
|
||
}
|
||
private void InsertTopSheetFirstBlankHalf(uint row, ref Row r)
|
||
{
|
||
r.Append(new Cell() { CellReference = string.Format("A{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("B{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("C{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("D{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("E{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("F{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("G{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("H{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("I{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("J{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("K{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("L{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("M{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("N{0}", row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("O{0}", row), StyleIndex = (UInt32Value)6U });
|
||
}
|
||
private Row InsertTopSheetBlankRow(uint row)
|
||
{
|
||
Row r = new Row() { RowIndex = (UInt32Value)row, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
r.Append(new Cell() { CellReference = string.Format("A{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("B{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("C{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("D{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("E{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("F{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("G{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("H{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("I{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("J{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("K{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("L{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("M{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("N{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("O{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("P{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("Q{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("R{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("S{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("T{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("U{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("V{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("W{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("X{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("Y{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("Z{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("AA{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("AB{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("AC{0}",row), StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = string.Format("AD{0}",row), StyleIndex = (UInt32Value)6U });
|
||
return r;
|
||
}
|
||
// Generates content of worksheetPart3.
|
||
private void GenerateTopSheetContent(WorksheetPart worksheetPart3,
|
||
string testNo,
|
||
string testTime,
|
||
string carMaker,
|
||
string carModel,
|
||
string testTemperature,
|
||
string measurementPoint,
|
||
string collisionSpeed,
|
||
string impactorId,
|
||
string impactorType,
|
||
string impactorWeight,
|
||
string testAdministrator,
|
||
string And1,
|
||
string And2,
|
||
string testCFC,
|
||
string accelerationUnits,
|
||
string bendingUnits,
|
||
string shearUnits
|
||
)
|
||
{
|
||
Worksheet worksheet3 = new Worksheet() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "x14ac" } };
|
||
worksheet3.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
||
worksheet3.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
|
||
worksheet3.AddNamespaceDeclaration("x14ac", "http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac");
|
||
SheetDimension sheetDimension3 = new SheetDimension() { Reference = "A1:AD53" };
|
||
|
||
SheetViews sheetViews3 = new SheetViews();
|
||
|
||
SheetView sheetView3 = new SheetView() { TabSelected = true, TopLeftCell = "A1", ZoomScaleNormal = (UInt32Value)100U, WorkbookViewId = (UInt32Value)0U };
|
||
Selection selection3 = new Selection() { ActiveCell = "A1", SequenceOfReferences = new ListValue<StringValue>() { InnerText = "A1" } };
|
||
|
||
sheetView3.Append(selection3);
|
||
|
||
sheetViews3.Append(sheetView3);
|
||
SheetFormatProperties sheetFormatProperties3 = new SheetFormatProperties() { DefaultColumnWidth = 5.7109375D, DefaultRowHeight = 14.25D, CustomHeight = true };
|
||
|
||
Columns columns2 = new Columns();
|
||
Column column2 = new Column() { Min = (UInt32Value)1U, Max = (UInt32Value)16384U, Width = 5.7109375D, Style = (UInt32Value)5U };
|
||
|
||
columns2.Append(column2);
|
||
|
||
SheetData sheetData3 = new SheetData();
|
||
|
||
Row r = new Row() { RowIndex = (UInt32Value)1U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
InsertTopSheetFirstBlankHalf(1U, ref r);
|
||
|
||
Cell c = new Cell() { CellReference = "P1", StyleIndex = (UInt32Value)30U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem("LWR LEG (E-PLI)").ToString() });
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q1", StyleIndex = (UInt32Value)31U });
|
||
r.Append(new Cell() { CellReference = "R1", StyleIndex = (UInt32Value)32U });
|
||
r.Append(new Cell() { CellReference = "S1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "T1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "U1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "V1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "W1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "X1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "Y1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "Z1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AA1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AB1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AC1", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD1", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)2U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(2U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P2", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem("TEST").ToString() });
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q2", StyleIndex = (UInt32Value)28U });
|
||
r.Append(new Cell() { CellReference = "R2", StyleIndex = (UInt32Value)29U });
|
||
r.Append(new Cell() { CellReference = "S2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "T2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "U2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "V2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "W2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "X2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "Y2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "Z2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AA2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AB2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AC2", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD2", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(3U));
|
||
sheetData3.Append(InsertTopSheetBlankRow(4U));
|
||
sheetData3.Append(InsertTopSheetBlankRow(5U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)6U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(6U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P6", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem(StringResources.TestNumber).ToString() });
|
||
AddCollectionReference(StringResources.TestNumber, "U6");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q6", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R6", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S6", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T6", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U6", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem(testNo).ToString() });
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V6", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W6", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X6", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y6", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z6", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA6", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB6", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC6", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD6", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(7U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)8U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
InsertTopSheetFirstBlankHalf(8U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P8", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem(StringResources.TestDate).ToString() });
|
||
AddCollectionReference(StringResources.TestDate, "U8");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q8", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R8", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S8", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T8", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U8", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem(testTime).ToString() });
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V8", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W8", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X8", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y8", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z8", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA8", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB8", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC8", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD8", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(9U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)10U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(10U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P10", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem(StringResources.CarName).ToString() });
|
||
AddCollectionReference(StringResources.CarName, "U10");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q10", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R10", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S10", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T10", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U10", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem(carMaker).ToString() });
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V10", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W10", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X10", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y10", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z10", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA10", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB10", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC10", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD10", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(11U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)12U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(12U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P12", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.Model).ToString()});
|
||
AddCollectionReference(StringResources.Model, "U12");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q12", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R12", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S12", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T12", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U12", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(carModel).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V12", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W12", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X12", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y12", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z12", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA12", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB12", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC12", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD12", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(13U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)14U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(14U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P14", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.TestTemperature).ToString()});
|
||
AddCollectionReference(StringResources.TestTemperature, "U14");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q14", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R14", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S14", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T14", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U14", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(testTemperature).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V14", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W14", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X14", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y14", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z14", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA14", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB14", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC14", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD14", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(15U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)16U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(16U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P16", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.MeasurementPoint).ToString()});
|
||
AddCollectionReference(StringResources.MeasurementPoint, "U16");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q16", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R16", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S16", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T16", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U16", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(measurementPoint).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V16", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W16", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X16", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y16", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z16", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA16", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB16", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC16", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD16", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(17U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)18U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(18U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P18", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.CrashVelocity).ToString()});
|
||
AddCollectionReference(StringResources.CrashVelocity, "U18");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q18", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R18", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S18", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T18", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U18", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(collisionSpeed).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V18", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W18", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X18", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y18", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z18", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA18", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB18", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC18", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD18", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(19U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)20U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
r.Append(new Cell() { CellReference = "A20", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "B20", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "C20", StyleIndex = (UInt32Value)25U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem(StringResources.EvaluationSite).ToString() });
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "D20", StyleIndex = (UInt32Value)26U });
|
||
r.Append(new Cell() { CellReference = "E20", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "F20", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "G20", StyleIndex = (UInt32Value)30U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem("LWR LEG (E-PLI)").ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "H20", StyleIndex = (UInt32Value)31U });
|
||
r.Append(new Cell() { CellReference = "I20", StyleIndex = (UInt32Value)32U });
|
||
r.Append(new Cell() { CellReference = "J20", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "K20", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "L20", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "M20", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "N20", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "O20", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "P20", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.ImpactorID).ToString()});
|
||
AddCollectionReference(StringResources.ImpactorID, "U20");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q20", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R20", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S20", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T20", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U20", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(impactorId).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V20", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W20", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X20", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y20", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z20", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA20", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB20", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC20", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD20", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(21U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)22U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
r.Append(new Cell() { CellReference = "A22", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "B22", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "C22", StyleIndex = (UInt32Value)25U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.type).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "D22", StyleIndex = (UInt32Value)26U });
|
||
r.Append(new Cell() { CellReference = "E22", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "F22", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "G22", StyleIndex = (UInt32Value)27U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem("TEST").ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "H22", StyleIndex = (UInt32Value)28U });
|
||
r.Append(new Cell() { CellReference = "I22", StyleIndex = (UInt32Value)29U });
|
||
r.Append(new Cell() { CellReference = "J22", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "K22", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "L22", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "M22", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "N22", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "O22", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "P22", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.ImpactorType).ToString()});
|
||
AddCollectionReference(StringResources.ImpactorType, "U22");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q22", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R22", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S22", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T22", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U22", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(impactorType).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V22", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W22", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X22", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y22", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z22", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA22", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB22", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC22", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD22", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(23U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)24U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(24U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P24", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.ImpactorWeight).ToString()});
|
||
AddCollectionReference(StringResources.ImpactorWeight, "U24");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q24", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R24", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S24", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T24", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U24", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(impactorWeight).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V24", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W24", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X24", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y24", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z24", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA24", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB24", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC24", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD24", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(25U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)26U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
InsertTopSheetFirstBlankHalf(26U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P26", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.Examiner).ToString()});
|
||
AddCollectionReference(StringResources.Examiner, "U26");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q26", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R26", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S26", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T26", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U26", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(testAdministrator).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V26", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W26", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X26", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y26", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z26", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA26", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB26", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC26", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD26", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(27U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)28U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(28U, ref r);
|
||
|
||
c = new Cell() { CellReference = "Q28", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.Reserved1).ToString()});
|
||
AddCollectionReference(StringResources.Reserved1, "U28");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "R28", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T28", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U28", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(And1).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V28", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W28", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X28", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y28", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z28", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA28", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB28", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC28", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD28", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(29U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)30U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
InsertTopSheetFirstBlankHalf(30U, ref r);
|
||
|
||
c = new Cell() { CellReference = "Q30", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.Reserved2).ToString()});
|
||
AddCollectionReference(StringResources.Reserved2, "U30");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "R30", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S30", StyleIndex = (UInt32Value)8U });
|
||
r.Append(new Cell() { CellReference = "T30", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U30", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(And2).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V30", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W30", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X30", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y30", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z30", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA30", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB30", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC30", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD30", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(31U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)32U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(32U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P32", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue() { Text = InsertSharedStringItem(StringResources.SelectionAutomaticDisplayItem).ToString() });
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q32", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R32", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S32", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T32", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "U32", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "V32", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "W32", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "X32", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "Y32", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "Z32", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AA32", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AB32", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AC32", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD32", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)33U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(33U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P33", StyleIndex = (UInt32Value)20U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(StringResources.ChannelFrequencyClass).ToString()});
|
||
AddCollectionReference(StringResources.ChannelFrequencyClass, "U33");
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q33", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "R33", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "S33", StyleIndex = (UInt32Value)21U });
|
||
r.Append(new Cell() { CellReference = "T33", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U33", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(testCFC).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V33", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W33", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X33", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y33", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z33", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA33", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB33", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC33", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD33", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(34U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)35U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
InsertTopSheetFirstBlankHalf(35U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P35", StyleIndex = (UInt32Value)22U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem("UNIT").ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q35", StyleIndex = (UInt32Value)22U });
|
||
r.Append(new Cell() { CellReference = "R35", StyleIndex = (UInt32Value)22U });
|
||
r.Append(new Cell() { CellReference = "S35", StyleIndex = (UInt32Value)22U });
|
||
r.Append(new Cell() { CellReference = "T35", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "U35", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "V35", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "W35", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "X35", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "Y35", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "Z35", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AA35", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AB35", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AC35", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD35", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)36U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(36U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P36", StyleIndex = (UInt32Value)16U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem("Acceleration").ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q36", StyleIndex = (UInt32Value)16U });
|
||
r.Append(new Cell() { CellReference = "R36", StyleIndex = (UInt32Value)16U });
|
||
r.Append(new Cell() { CellReference = "S36", StyleIndex = (UInt32Value)16U });
|
||
r.Append(new Cell() { CellReference = "T36", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U36", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(accelerationUnits).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V36", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W36", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X36", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y36", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z36", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA36", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB36", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC36", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD36", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(37U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)38U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
|
||
InsertTopSheetFirstBlankHalf(38U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P38", StyleIndex = (UInt32Value)16U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem("Bending Angle").ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q38", StyleIndex = (UInt32Value)16U });
|
||
r.Append(new Cell() { CellReference = "R38", StyleIndex = (UInt32Value)16U });
|
||
r.Append(new Cell() { CellReference = "S38", StyleIndex = (UInt32Value)16U });
|
||
r.Append(new Cell() { CellReference = "T38", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U38", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(bendingUnits).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V38", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W38", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X38", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y38", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z38", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA38", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB38", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC38", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD38", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
sheetData3.Append(InsertTopSheetBlankRow(39U));
|
||
|
||
r = new Row() { RowIndex = (UInt32Value)40U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
||
InsertTopSheetFirstBlankHalf(40U, ref r);
|
||
|
||
c = new Cell() { CellReference = "P40", StyleIndex = (UInt32Value)16U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem("Shear Displacement").ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "Q40", StyleIndex = (UInt32Value)16U });
|
||
r.Append(new Cell() { CellReference = "R40", StyleIndex = (UInt32Value)16U });
|
||
r.Append(new Cell() { CellReference = "S40", StyleIndex = (UInt32Value)16U });
|
||
r.Append(new Cell() { CellReference = "T40", StyleIndex = (UInt32Value)6U });
|
||
|
||
c = new Cell() { CellReference = "U40", StyleIndex = (UInt32Value)17U, DataType = CellValues.SharedString };
|
||
c.Append(new CellValue(){Text = InsertSharedStringItem(shearUnits).ToString()});
|
||
r.Append(c);
|
||
|
||
r.Append(new Cell() { CellReference = "V40", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "W40", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "X40", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Y40", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "Z40", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AA40", StyleIndex = (UInt32Value)18U });
|
||
r.Append(new Cell() { CellReference = "AB40", StyleIndex = (UInt32Value)19U });
|
||
r.Append(new Cell() { CellReference = "AC40", StyleIndex = (UInt32Value)6U });
|
||
r.Append(new Cell() { CellReference = "AD40", StyleIndex = (UInt32Value)6U });
|
||
|
||
sheetData3.Append(r);
|
||
|
||
Row row116 = new Row() { RowIndex = (UInt32Value)41U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell2887 = new Cell() { CellReference = "A41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2888 = new Cell() { CellReference = "B41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2889 = new Cell() { CellReference = "C41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2890 = new Cell() { CellReference = "D41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2891 = new Cell() { CellReference = "E41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2892 = new Cell() { CellReference = "F41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2893 = new Cell() { CellReference = "G41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2894 = new Cell() { CellReference = "H41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2895 = new Cell() { CellReference = "I41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2896 = new Cell() { CellReference = "J41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2897 = new Cell() { CellReference = "K41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2898 = new Cell() { CellReference = "L41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2899 = new Cell() { CellReference = "M41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2900 = new Cell() { CellReference = "N41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2901 = new Cell() { CellReference = "O41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2902 = new Cell() { CellReference = "P41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2903 = new Cell() { CellReference = "Q41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2904 = new Cell() { CellReference = "R41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2905 = new Cell() { CellReference = "S41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2906 = new Cell() { CellReference = "T41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2907 = new Cell() { CellReference = "U41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2908 = new Cell() { CellReference = "V41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2909 = new Cell() { CellReference = "W41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2910 = new Cell() { CellReference = "X41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2911 = new Cell() { CellReference = "Y41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2912 = new Cell() { CellReference = "Z41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2913 = new Cell() { CellReference = "AA41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2914 = new Cell() { CellReference = "AB41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2915 = new Cell() { CellReference = "AC41", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2916 = new Cell() { CellReference = "AD41", StyleIndex = (UInt32Value)6U };
|
||
|
||
row116.Append(cell2887);
|
||
row116.Append(cell2888);
|
||
row116.Append(cell2889);
|
||
row116.Append(cell2890);
|
||
row116.Append(cell2891);
|
||
row116.Append(cell2892);
|
||
row116.Append(cell2893);
|
||
row116.Append(cell2894);
|
||
row116.Append(cell2895);
|
||
row116.Append(cell2896);
|
||
row116.Append(cell2897);
|
||
row116.Append(cell2898);
|
||
row116.Append(cell2899);
|
||
row116.Append(cell2900);
|
||
row116.Append(cell2901);
|
||
row116.Append(cell2902);
|
||
row116.Append(cell2903);
|
||
row116.Append(cell2904);
|
||
row116.Append(cell2905);
|
||
row116.Append(cell2906);
|
||
row116.Append(cell2907);
|
||
row116.Append(cell2908);
|
||
row116.Append(cell2909);
|
||
row116.Append(cell2910);
|
||
row116.Append(cell2911);
|
||
row116.Append(cell2912);
|
||
row116.Append(cell2913);
|
||
row116.Append(cell2914);
|
||
row116.Append(cell2915);
|
||
row116.Append(cell2916);
|
||
|
||
Row row117 = new Row() { RowIndex = (UInt32Value)42U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell2917 = new Cell() { CellReference = "A42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2918 = new Cell() { CellReference = "B42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2919 = new Cell() { CellReference = "C42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2920 = new Cell() { CellReference = "D42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2921 = new Cell() { CellReference = "E42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2922 = new Cell() { CellReference = "F42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2923 = new Cell() { CellReference = "G42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2924 = new Cell() { CellReference = "H42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2925 = new Cell() { CellReference = "I42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2926 = new Cell() { CellReference = "J42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2927 = new Cell() { CellReference = "K42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2928 = new Cell() { CellReference = "L42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2929 = new Cell() { CellReference = "M42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2930 = new Cell() { CellReference = "N42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2931 = new Cell() { CellReference = "O42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2932 = new Cell() { CellReference = "P42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2933 = new Cell() { CellReference = "Q42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2934 = new Cell() { CellReference = "R42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2935 = new Cell() { CellReference = "S42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2936 = new Cell() { CellReference = "T42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2937 = new Cell() { CellReference = "U42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2938 = new Cell() { CellReference = "V42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2939 = new Cell() { CellReference = "W42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2940 = new Cell() { CellReference = "X42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2941 = new Cell() { CellReference = "Y42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2942 = new Cell() { CellReference = "Z42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2943 = new Cell() { CellReference = "AA42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2944 = new Cell() { CellReference = "AB42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2945 = new Cell() { CellReference = "AC42", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2946 = new Cell() { CellReference = "AD42", StyleIndex = (UInt32Value)6U };
|
||
|
||
row117.Append(cell2917);
|
||
row117.Append(cell2918);
|
||
row117.Append(cell2919);
|
||
row117.Append(cell2920);
|
||
row117.Append(cell2921);
|
||
row117.Append(cell2922);
|
||
row117.Append(cell2923);
|
||
row117.Append(cell2924);
|
||
row117.Append(cell2925);
|
||
row117.Append(cell2926);
|
||
row117.Append(cell2927);
|
||
row117.Append(cell2928);
|
||
row117.Append(cell2929);
|
||
row117.Append(cell2930);
|
||
row117.Append(cell2931);
|
||
row117.Append(cell2932);
|
||
row117.Append(cell2933);
|
||
row117.Append(cell2934);
|
||
row117.Append(cell2935);
|
||
row117.Append(cell2936);
|
||
row117.Append(cell2937);
|
||
row117.Append(cell2938);
|
||
row117.Append(cell2939);
|
||
row117.Append(cell2940);
|
||
row117.Append(cell2941);
|
||
row117.Append(cell2942);
|
||
row117.Append(cell2943);
|
||
row117.Append(cell2944);
|
||
row117.Append(cell2945);
|
||
row117.Append(cell2946);
|
||
|
||
Row row118 = new Row() { RowIndex = (UInt32Value)43U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell2947 = new Cell() { CellReference = "A43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2948 = new Cell() { CellReference = "B43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2949 = new Cell() { CellReference = "C43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2950 = new Cell() { CellReference = "D43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2951 = new Cell() { CellReference = "E43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2952 = new Cell() { CellReference = "F43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2953 = new Cell() { CellReference = "G43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2954 = new Cell() { CellReference = "H43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2955 = new Cell() { CellReference = "I43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2956 = new Cell() { CellReference = "J43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2957 = new Cell() { CellReference = "K43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2958 = new Cell() { CellReference = "L43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2959 = new Cell() { CellReference = "M43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2960 = new Cell() { CellReference = "N43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2961 = new Cell() { CellReference = "O43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2962 = new Cell() { CellReference = "P43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2963 = new Cell() { CellReference = "Q43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2964 = new Cell() { CellReference = "R43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2965 = new Cell() { CellReference = "S43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2966 = new Cell() { CellReference = "T43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2967 = new Cell() { CellReference = "U43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2968 = new Cell() { CellReference = "V43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2969 = new Cell() { CellReference = "W43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2970 = new Cell() { CellReference = "X43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2971 = new Cell() { CellReference = "Y43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2972 = new Cell() { CellReference = "Z43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2973 = new Cell() { CellReference = "AA43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2974 = new Cell() { CellReference = "AB43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2975 = new Cell() { CellReference = "AC43", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2976 = new Cell() { CellReference = "AD43", StyleIndex = (UInt32Value)6U };
|
||
|
||
row118.Append(cell2947);
|
||
row118.Append(cell2948);
|
||
row118.Append(cell2949);
|
||
row118.Append(cell2950);
|
||
row118.Append(cell2951);
|
||
row118.Append(cell2952);
|
||
row118.Append(cell2953);
|
||
row118.Append(cell2954);
|
||
row118.Append(cell2955);
|
||
row118.Append(cell2956);
|
||
row118.Append(cell2957);
|
||
row118.Append(cell2958);
|
||
row118.Append(cell2959);
|
||
row118.Append(cell2960);
|
||
row118.Append(cell2961);
|
||
row118.Append(cell2962);
|
||
row118.Append(cell2963);
|
||
row118.Append(cell2964);
|
||
row118.Append(cell2965);
|
||
row118.Append(cell2966);
|
||
row118.Append(cell2967);
|
||
row118.Append(cell2968);
|
||
row118.Append(cell2969);
|
||
row118.Append(cell2970);
|
||
row118.Append(cell2971);
|
||
row118.Append(cell2972);
|
||
row118.Append(cell2973);
|
||
row118.Append(cell2974);
|
||
row118.Append(cell2975);
|
||
row118.Append(cell2976);
|
||
|
||
Row row119 = new Row() { RowIndex = (UInt32Value)44U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell2977 = new Cell() { CellReference = "A44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2978 = new Cell() { CellReference = "B44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2979 = new Cell() { CellReference = "C44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2980 = new Cell() { CellReference = "D44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2981 = new Cell() { CellReference = "E44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2982 = new Cell() { CellReference = "F44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2983 = new Cell() { CellReference = "G44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2984 = new Cell() { CellReference = "H44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2985 = new Cell() { CellReference = "I44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2986 = new Cell() { CellReference = "J44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2987 = new Cell() { CellReference = "K44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2988 = new Cell() { CellReference = "L44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2989 = new Cell() { CellReference = "M44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2990 = new Cell() { CellReference = "N44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2991 = new Cell() { CellReference = "O44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2992 = new Cell() { CellReference = "P44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2993 = new Cell() { CellReference = "Q44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2994 = new Cell() { CellReference = "R44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2995 = new Cell() { CellReference = "S44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2996 = new Cell() { CellReference = "T44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2997 = new Cell() { CellReference = "U44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2998 = new Cell() { CellReference = "V44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell2999 = new Cell() { CellReference = "W44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3000 = new Cell() { CellReference = "X44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3001 = new Cell() { CellReference = "Y44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3002 = new Cell() { CellReference = "Z44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3003 = new Cell() { CellReference = "AA44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3004 = new Cell() { CellReference = "AB44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3005 = new Cell() { CellReference = "AC44", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3006 = new Cell() { CellReference = "AD44", StyleIndex = (UInt32Value)6U };
|
||
|
||
row119.Append(cell2977);
|
||
row119.Append(cell2978);
|
||
row119.Append(cell2979);
|
||
row119.Append(cell2980);
|
||
row119.Append(cell2981);
|
||
row119.Append(cell2982);
|
||
row119.Append(cell2983);
|
||
row119.Append(cell2984);
|
||
row119.Append(cell2985);
|
||
row119.Append(cell2986);
|
||
row119.Append(cell2987);
|
||
row119.Append(cell2988);
|
||
row119.Append(cell2989);
|
||
row119.Append(cell2990);
|
||
row119.Append(cell2991);
|
||
row119.Append(cell2992);
|
||
row119.Append(cell2993);
|
||
row119.Append(cell2994);
|
||
row119.Append(cell2995);
|
||
row119.Append(cell2996);
|
||
row119.Append(cell2997);
|
||
row119.Append(cell2998);
|
||
row119.Append(cell2999);
|
||
row119.Append(cell3000);
|
||
row119.Append(cell3001);
|
||
row119.Append(cell3002);
|
||
row119.Append(cell3003);
|
||
row119.Append(cell3004);
|
||
row119.Append(cell3005);
|
||
row119.Append(cell3006);
|
||
|
||
Row row120 = new Row() { RowIndex = (UInt32Value)45U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell3007 = new Cell() { CellReference = "A45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3008 = new Cell() { CellReference = "B45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3009 = new Cell() { CellReference = "C45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3010 = new Cell() { CellReference = "D45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3011 = new Cell() { CellReference = "E45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3012 = new Cell() { CellReference = "F45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3013 = new Cell() { CellReference = "G45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3014 = new Cell() { CellReference = "H45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3015 = new Cell() { CellReference = "I45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3016 = new Cell() { CellReference = "J45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3017 = new Cell() { CellReference = "K45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3018 = new Cell() { CellReference = "L45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3019 = new Cell() { CellReference = "M45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3020 = new Cell() { CellReference = "N45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3021 = new Cell() { CellReference = "O45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3022 = new Cell() { CellReference = "P45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3023 = new Cell() { CellReference = "Q45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3024 = new Cell() { CellReference = "R45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3025 = new Cell() { CellReference = "S45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3026 = new Cell() { CellReference = "T45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3027 = new Cell() { CellReference = "U45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3028 = new Cell() { CellReference = "V45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3029 = new Cell() { CellReference = "W45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3030 = new Cell() { CellReference = "X45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3031 = new Cell() { CellReference = "Y45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3032 = new Cell() { CellReference = "Z45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3033 = new Cell() { CellReference = "AA45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3034 = new Cell() { CellReference = "AB45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3035 = new Cell() { CellReference = "AC45", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3036 = new Cell() { CellReference = "AD45", StyleIndex = (UInt32Value)6U };
|
||
|
||
row120.Append(cell3007);
|
||
row120.Append(cell3008);
|
||
row120.Append(cell3009);
|
||
row120.Append(cell3010);
|
||
row120.Append(cell3011);
|
||
row120.Append(cell3012);
|
||
row120.Append(cell3013);
|
||
row120.Append(cell3014);
|
||
row120.Append(cell3015);
|
||
row120.Append(cell3016);
|
||
row120.Append(cell3017);
|
||
row120.Append(cell3018);
|
||
row120.Append(cell3019);
|
||
row120.Append(cell3020);
|
||
row120.Append(cell3021);
|
||
row120.Append(cell3022);
|
||
row120.Append(cell3023);
|
||
row120.Append(cell3024);
|
||
row120.Append(cell3025);
|
||
row120.Append(cell3026);
|
||
row120.Append(cell3027);
|
||
row120.Append(cell3028);
|
||
row120.Append(cell3029);
|
||
row120.Append(cell3030);
|
||
row120.Append(cell3031);
|
||
row120.Append(cell3032);
|
||
row120.Append(cell3033);
|
||
row120.Append(cell3034);
|
||
row120.Append(cell3035);
|
||
row120.Append(cell3036);
|
||
|
||
Row row121 = new Row() { RowIndex = (UInt32Value)46U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell3037 = new Cell() { CellReference = "A46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3038 = new Cell() { CellReference = "B46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3039 = new Cell() { CellReference = "C46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3040 = new Cell() { CellReference = "D46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3041 = new Cell() { CellReference = "E46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3042 = new Cell() { CellReference = "F46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3043 = new Cell() { CellReference = "G46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3044 = new Cell() { CellReference = "H46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3045 = new Cell() { CellReference = "I46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3046 = new Cell() { CellReference = "J46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3047 = new Cell() { CellReference = "K46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3048 = new Cell() { CellReference = "L46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3049 = new Cell() { CellReference = "M46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3050 = new Cell() { CellReference = "N46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3051 = new Cell() { CellReference = "O46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3052 = new Cell() { CellReference = "P46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3053 = new Cell() { CellReference = "Q46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3054 = new Cell() { CellReference = "R46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3055 = new Cell() { CellReference = "S46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3056 = new Cell() { CellReference = "T46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3057 = new Cell() { CellReference = "U46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3058 = new Cell() { CellReference = "V46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3059 = new Cell() { CellReference = "W46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3060 = new Cell() { CellReference = "X46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3061 = new Cell() { CellReference = "Y46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3062 = new Cell() { CellReference = "Z46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3063 = new Cell() { CellReference = "AA46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3064 = new Cell() { CellReference = "AB46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3065 = new Cell() { CellReference = "AC46", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3066 = new Cell() { CellReference = "AD46", StyleIndex = (UInt32Value)6U };
|
||
|
||
row121.Append(cell3037);
|
||
row121.Append(cell3038);
|
||
row121.Append(cell3039);
|
||
row121.Append(cell3040);
|
||
row121.Append(cell3041);
|
||
row121.Append(cell3042);
|
||
row121.Append(cell3043);
|
||
row121.Append(cell3044);
|
||
row121.Append(cell3045);
|
||
row121.Append(cell3046);
|
||
row121.Append(cell3047);
|
||
row121.Append(cell3048);
|
||
row121.Append(cell3049);
|
||
row121.Append(cell3050);
|
||
row121.Append(cell3051);
|
||
row121.Append(cell3052);
|
||
row121.Append(cell3053);
|
||
row121.Append(cell3054);
|
||
row121.Append(cell3055);
|
||
row121.Append(cell3056);
|
||
row121.Append(cell3057);
|
||
row121.Append(cell3058);
|
||
row121.Append(cell3059);
|
||
row121.Append(cell3060);
|
||
row121.Append(cell3061);
|
||
row121.Append(cell3062);
|
||
row121.Append(cell3063);
|
||
row121.Append(cell3064);
|
||
row121.Append(cell3065);
|
||
row121.Append(cell3066);
|
||
|
||
Row row122 = new Row() { RowIndex = (UInt32Value)47U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell3067 = new Cell() { CellReference = "A47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3068 = new Cell() { CellReference = "B47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3069 = new Cell() { CellReference = "C47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3070 = new Cell() { CellReference = "D47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3071 = new Cell() { CellReference = "E47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3072 = new Cell() { CellReference = "F47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3073 = new Cell() { CellReference = "G47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3074 = new Cell() { CellReference = "H47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3075 = new Cell() { CellReference = "I47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3076 = new Cell() { CellReference = "J47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3077 = new Cell() { CellReference = "K47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3078 = new Cell() { CellReference = "L47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3079 = new Cell() { CellReference = "M47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3080 = new Cell() { CellReference = "N47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3081 = new Cell() { CellReference = "O47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3082 = new Cell() { CellReference = "P47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3083 = new Cell() { CellReference = "Q47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3084 = new Cell() { CellReference = "R47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3085 = new Cell() { CellReference = "S47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3086 = new Cell() { CellReference = "T47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3087 = new Cell() { CellReference = "U47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3088 = new Cell() { CellReference = "V47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3089 = new Cell() { CellReference = "W47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3090 = new Cell() { CellReference = "X47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3091 = new Cell() { CellReference = "Y47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3092 = new Cell() { CellReference = "Z47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3093 = new Cell() { CellReference = "AA47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3094 = new Cell() { CellReference = "AB47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3095 = new Cell() { CellReference = "AC47", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3096 = new Cell() { CellReference = "AD47", StyleIndex = (UInt32Value)6U };
|
||
|
||
row122.Append(cell3067);
|
||
row122.Append(cell3068);
|
||
row122.Append(cell3069);
|
||
row122.Append(cell3070);
|
||
row122.Append(cell3071);
|
||
row122.Append(cell3072);
|
||
row122.Append(cell3073);
|
||
row122.Append(cell3074);
|
||
row122.Append(cell3075);
|
||
row122.Append(cell3076);
|
||
row122.Append(cell3077);
|
||
row122.Append(cell3078);
|
||
row122.Append(cell3079);
|
||
row122.Append(cell3080);
|
||
row122.Append(cell3081);
|
||
row122.Append(cell3082);
|
||
row122.Append(cell3083);
|
||
row122.Append(cell3084);
|
||
row122.Append(cell3085);
|
||
row122.Append(cell3086);
|
||
row122.Append(cell3087);
|
||
row122.Append(cell3088);
|
||
row122.Append(cell3089);
|
||
row122.Append(cell3090);
|
||
row122.Append(cell3091);
|
||
row122.Append(cell3092);
|
||
row122.Append(cell3093);
|
||
row122.Append(cell3094);
|
||
row122.Append(cell3095);
|
||
row122.Append(cell3096);
|
||
|
||
Row row123 = new Row() { RowIndex = (UInt32Value)48U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell3097 = new Cell() { CellReference = "A48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3098 = new Cell() { CellReference = "B48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3099 = new Cell() { CellReference = "C48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3100 = new Cell() { CellReference = "D48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3101 = new Cell() { CellReference = "E48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3102 = new Cell() { CellReference = "F48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3103 = new Cell() { CellReference = "G48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3104 = new Cell() { CellReference = "H48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3105 = new Cell() { CellReference = "I48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3106 = new Cell() { CellReference = "J48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3107 = new Cell() { CellReference = "K48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3108 = new Cell() { CellReference = "L48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3109 = new Cell() { CellReference = "M48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3110 = new Cell() { CellReference = "N48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3111 = new Cell() { CellReference = "O48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3112 = new Cell() { CellReference = "P48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3113 = new Cell() { CellReference = "Q48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3114 = new Cell() { CellReference = "R48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3115 = new Cell() { CellReference = "S48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3116 = new Cell() { CellReference = "T48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3117 = new Cell() { CellReference = "U48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3118 = new Cell() { CellReference = "V48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3119 = new Cell() { CellReference = "W48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3120 = new Cell() { CellReference = "X48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3121 = new Cell() { CellReference = "Y48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3122 = new Cell() { CellReference = "Z48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3123 = new Cell() { CellReference = "AA48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3124 = new Cell() { CellReference = "AB48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3125 = new Cell() { CellReference = "AC48", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3126 = new Cell() { CellReference = "AD48", StyleIndex = (UInt32Value)6U };
|
||
|
||
row123.Append(cell3097);
|
||
row123.Append(cell3098);
|
||
row123.Append(cell3099);
|
||
row123.Append(cell3100);
|
||
row123.Append(cell3101);
|
||
row123.Append(cell3102);
|
||
row123.Append(cell3103);
|
||
row123.Append(cell3104);
|
||
row123.Append(cell3105);
|
||
row123.Append(cell3106);
|
||
row123.Append(cell3107);
|
||
row123.Append(cell3108);
|
||
row123.Append(cell3109);
|
||
row123.Append(cell3110);
|
||
row123.Append(cell3111);
|
||
row123.Append(cell3112);
|
||
row123.Append(cell3113);
|
||
row123.Append(cell3114);
|
||
row123.Append(cell3115);
|
||
row123.Append(cell3116);
|
||
row123.Append(cell3117);
|
||
row123.Append(cell3118);
|
||
row123.Append(cell3119);
|
||
row123.Append(cell3120);
|
||
row123.Append(cell3121);
|
||
row123.Append(cell3122);
|
||
row123.Append(cell3123);
|
||
row123.Append(cell3124);
|
||
row123.Append(cell3125);
|
||
row123.Append(cell3126);
|
||
|
||
Row row124 = new Row() { RowIndex = (UInt32Value)49U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell3127 = new Cell() { CellReference = "A49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3128 = new Cell() { CellReference = "B49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3129 = new Cell() { CellReference = "C49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3130 = new Cell() { CellReference = "D49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3131 = new Cell() { CellReference = "E49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3132 = new Cell() { CellReference = "F49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3133 = new Cell() { CellReference = "G49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3134 = new Cell() { CellReference = "H49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3135 = new Cell() { CellReference = "I49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3136 = new Cell() { CellReference = "J49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3137 = new Cell() { CellReference = "K49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3138 = new Cell() { CellReference = "L49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3139 = new Cell() { CellReference = "M49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3140 = new Cell() { CellReference = "N49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3141 = new Cell() { CellReference = "O49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3142 = new Cell() { CellReference = "P49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3143 = new Cell() { CellReference = "Q49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3144 = new Cell() { CellReference = "R49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3145 = new Cell() { CellReference = "S49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3146 = new Cell() { CellReference = "T49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3147 = new Cell() { CellReference = "U49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3148 = new Cell() { CellReference = "V49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3149 = new Cell() { CellReference = "W49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3150 = new Cell() { CellReference = "X49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3151 = new Cell() { CellReference = "Y49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3152 = new Cell() { CellReference = "Z49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3153 = new Cell() { CellReference = "AA49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3154 = new Cell() { CellReference = "AB49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3155 = new Cell() { CellReference = "AC49", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3156 = new Cell() { CellReference = "AD49", StyleIndex = (UInt32Value)6U };
|
||
|
||
row124.Append(cell3127);
|
||
row124.Append(cell3128);
|
||
row124.Append(cell3129);
|
||
row124.Append(cell3130);
|
||
row124.Append(cell3131);
|
||
row124.Append(cell3132);
|
||
row124.Append(cell3133);
|
||
row124.Append(cell3134);
|
||
row124.Append(cell3135);
|
||
row124.Append(cell3136);
|
||
row124.Append(cell3137);
|
||
row124.Append(cell3138);
|
||
row124.Append(cell3139);
|
||
row124.Append(cell3140);
|
||
row124.Append(cell3141);
|
||
row124.Append(cell3142);
|
||
row124.Append(cell3143);
|
||
row124.Append(cell3144);
|
||
row124.Append(cell3145);
|
||
row124.Append(cell3146);
|
||
row124.Append(cell3147);
|
||
row124.Append(cell3148);
|
||
row124.Append(cell3149);
|
||
row124.Append(cell3150);
|
||
row124.Append(cell3151);
|
||
row124.Append(cell3152);
|
||
row124.Append(cell3153);
|
||
row124.Append(cell3154);
|
||
row124.Append(cell3155);
|
||
row124.Append(cell3156);
|
||
|
||
Row row125 = new Row() { RowIndex = (UInt32Value)50U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell3157 = new Cell() { CellReference = "A50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3158 = new Cell() { CellReference = "B50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3159 = new Cell() { CellReference = "C50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3160 = new Cell() { CellReference = "D50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3161 = new Cell() { CellReference = "E50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3162 = new Cell() { CellReference = "F50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3163 = new Cell() { CellReference = "G50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3164 = new Cell() { CellReference = "H50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3165 = new Cell() { CellReference = "I50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3166 = new Cell() { CellReference = "J50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3167 = new Cell() { CellReference = "K50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3168 = new Cell() { CellReference = "L50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3169 = new Cell() { CellReference = "M50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3170 = new Cell() { CellReference = "N50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3171 = new Cell() { CellReference = "O50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3172 = new Cell() { CellReference = "P50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3173 = new Cell() { CellReference = "Q50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3174 = new Cell() { CellReference = "R50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3175 = new Cell() { CellReference = "S50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3176 = new Cell() { CellReference = "T50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3177 = new Cell() { CellReference = "U50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3178 = new Cell() { CellReference = "V50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3179 = new Cell() { CellReference = "W50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3180 = new Cell() { CellReference = "X50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3181 = new Cell() { CellReference = "Y50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3182 = new Cell() { CellReference = "Z50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3183 = new Cell() { CellReference = "AA50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3184 = new Cell() { CellReference = "AB50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3185 = new Cell() { CellReference = "AC50", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3186 = new Cell() { CellReference = "AD50", StyleIndex = (UInt32Value)6U };
|
||
|
||
row125.Append(cell3157);
|
||
row125.Append(cell3158);
|
||
row125.Append(cell3159);
|
||
row125.Append(cell3160);
|
||
row125.Append(cell3161);
|
||
row125.Append(cell3162);
|
||
row125.Append(cell3163);
|
||
row125.Append(cell3164);
|
||
row125.Append(cell3165);
|
||
row125.Append(cell3166);
|
||
row125.Append(cell3167);
|
||
row125.Append(cell3168);
|
||
row125.Append(cell3169);
|
||
row125.Append(cell3170);
|
||
row125.Append(cell3171);
|
||
row125.Append(cell3172);
|
||
row125.Append(cell3173);
|
||
row125.Append(cell3174);
|
||
row125.Append(cell3175);
|
||
row125.Append(cell3176);
|
||
row125.Append(cell3177);
|
||
row125.Append(cell3178);
|
||
row125.Append(cell3179);
|
||
row125.Append(cell3180);
|
||
row125.Append(cell3181);
|
||
row125.Append(cell3182);
|
||
row125.Append(cell3183);
|
||
row125.Append(cell3184);
|
||
row125.Append(cell3185);
|
||
row125.Append(cell3186);
|
||
|
||
Row row126 = new Row() { RowIndex = (UInt32Value)51U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell3187 = new Cell() { CellReference = "A51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3188 = new Cell() { CellReference = "B51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3189 = new Cell() { CellReference = "C51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3190 = new Cell() { CellReference = "D51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3191 = new Cell() { CellReference = "E51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3192 = new Cell() { CellReference = "F51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3193 = new Cell() { CellReference = "G51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3194 = new Cell() { CellReference = "H51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3195 = new Cell() { CellReference = "I51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3196 = new Cell() { CellReference = "J51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3197 = new Cell() { CellReference = "K51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3198 = new Cell() { CellReference = "L51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3199 = new Cell() { CellReference = "M51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3200 = new Cell() { CellReference = "N51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3201 = new Cell() { CellReference = "O51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3202 = new Cell() { CellReference = "P51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3203 = new Cell() { CellReference = "Q51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3204 = new Cell() { CellReference = "R51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3205 = new Cell() { CellReference = "S51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3206 = new Cell() { CellReference = "T51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3207 = new Cell() { CellReference = "U51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3208 = new Cell() { CellReference = "V51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3209 = new Cell() { CellReference = "W51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3210 = new Cell() { CellReference = "X51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3211 = new Cell() { CellReference = "Y51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3212 = new Cell() { CellReference = "Z51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3213 = new Cell() { CellReference = "AA51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3214 = new Cell() { CellReference = "AB51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3215 = new Cell() { CellReference = "AC51", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3216 = new Cell() { CellReference = "AD51", StyleIndex = (UInt32Value)6U };
|
||
|
||
row126.Append(cell3187);
|
||
row126.Append(cell3188);
|
||
row126.Append(cell3189);
|
||
row126.Append(cell3190);
|
||
row126.Append(cell3191);
|
||
row126.Append(cell3192);
|
||
row126.Append(cell3193);
|
||
row126.Append(cell3194);
|
||
row126.Append(cell3195);
|
||
row126.Append(cell3196);
|
||
row126.Append(cell3197);
|
||
row126.Append(cell3198);
|
||
row126.Append(cell3199);
|
||
row126.Append(cell3200);
|
||
row126.Append(cell3201);
|
||
row126.Append(cell3202);
|
||
row126.Append(cell3203);
|
||
row126.Append(cell3204);
|
||
row126.Append(cell3205);
|
||
row126.Append(cell3206);
|
||
row126.Append(cell3207);
|
||
row126.Append(cell3208);
|
||
row126.Append(cell3209);
|
||
row126.Append(cell3210);
|
||
row126.Append(cell3211);
|
||
row126.Append(cell3212);
|
||
row126.Append(cell3213);
|
||
row126.Append(cell3214);
|
||
row126.Append(cell3215);
|
||
row126.Append(cell3216);
|
||
|
||
Row row127 = new Row() { RowIndex = (UInt32Value)52U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell3217 = new Cell() { CellReference = "A52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3218 = new Cell() { CellReference = "B52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3219 = new Cell() { CellReference = "C52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3220 = new Cell() { CellReference = "D52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3221 = new Cell() { CellReference = "E52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3222 = new Cell() { CellReference = "F52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3223 = new Cell() { CellReference = "G52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3224 = new Cell() { CellReference = "H52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3225 = new Cell() { CellReference = "I52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3226 = new Cell() { CellReference = "J52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3227 = new Cell() { CellReference = "K52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3228 = new Cell() { CellReference = "L52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3229 = new Cell() { CellReference = "M52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3230 = new Cell() { CellReference = "N52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3231 = new Cell() { CellReference = "O52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3232 = new Cell() { CellReference = "P52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3233 = new Cell() { CellReference = "Q52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3234 = new Cell() { CellReference = "R52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3235 = new Cell() { CellReference = "S52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3236 = new Cell() { CellReference = "T52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3237 = new Cell() { CellReference = "U52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3238 = new Cell() { CellReference = "V52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3239 = new Cell() { CellReference = "W52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3240 = new Cell() { CellReference = "X52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3241 = new Cell() { CellReference = "Y52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3242 = new Cell() { CellReference = "Z52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3243 = new Cell() { CellReference = "AA52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3244 = new Cell() { CellReference = "AB52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3245 = new Cell() { CellReference = "AC52", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3246 = new Cell() { CellReference = "AD52", StyleIndex = (UInt32Value)6U };
|
||
|
||
row127.Append(cell3217);
|
||
row127.Append(cell3218);
|
||
row127.Append(cell3219);
|
||
row127.Append(cell3220);
|
||
row127.Append(cell3221);
|
||
row127.Append(cell3222);
|
||
row127.Append(cell3223);
|
||
row127.Append(cell3224);
|
||
row127.Append(cell3225);
|
||
row127.Append(cell3226);
|
||
row127.Append(cell3227);
|
||
row127.Append(cell3228);
|
||
row127.Append(cell3229);
|
||
row127.Append(cell3230);
|
||
row127.Append(cell3231);
|
||
row127.Append(cell3232);
|
||
row127.Append(cell3233);
|
||
row127.Append(cell3234);
|
||
row127.Append(cell3235);
|
||
row127.Append(cell3236);
|
||
row127.Append(cell3237);
|
||
row127.Append(cell3238);
|
||
row127.Append(cell3239);
|
||
row127.Append(cell3240);
|
||
row127.Append(cell3241);
|
||
row127.Append(cell3242);
|
||
row127.Append(cell3243);
|
||
row127.Append(cell3244);
|
||
row127.Append(cell3245);
|
||
row127.Append(cell3246);
|
||
|
||
Row row128 = new Row() { RowIndex = (UInt32Value)53U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
||
Cell cell3247 = new Cell() { CellReference = "A53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3248 = new Cell() { CellReference = "B53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3249 = new Cell() { CellReference = "C53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3250 = new Cell() { CellReference = "D53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3251 = new Cell() { CellReference = "E53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3252 = new Cell() { CellReference = "F53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3253 = new Cell() { CellReference = "G53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3254 = new Cell() { CellReference = "H53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3255 = new Cell() { CellReference = "I53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3256 = new Cell() { CellReference = "J53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3257 = new Cell() { CellReference = "K53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3258 = new Cell() { CellReference = "L53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3259 = new Cell() { CellReference = "M53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3260 = new Cell() { CellReference = "N53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3261 = new Cell() { CellReference = "O53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3262 = new Cell() { CellReference = "P53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3263 = new Cell() { CellReference = "Q53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3264 = new Cell() { CellReference = "R53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3265 = new Cell() { CellReference = "S53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3266 = new Cell() { CellReference = "T53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3267 = new Cell() { CellReference = "U53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3268 = new Cell() { CellReference = "V53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3269 = new Cell() { CellReference = "W53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3270 = new Cell() { CellReference = "X53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3271 = new Cell() { CellReference = "Y53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3272 = new Cell() { CellReference = "Z53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3273 = new Cell() { CellReference = "AA53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3274 = new Cell() { CellReference = "AB53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3275 = new Cell() { CellReference = "AC53", StyleIndex = (UInt32Value)6U };
|
||
Cell cell3276 = new Cell() { CellReference = "AD53", StyleIndex = (UInt32Value)6U };
|
||
|
||
row128.Append(cell3247);
|
||
row128.Append(cell3248);
|
||
row128.Append(cell3249);
|
||
row128.Append(cell3250);
|
||
row128.Append(cell3251);
|
||
row128.Append(cell3252);
|
||
row128.Append(cell3253);
|
||
row128.Append(cell3254);
|
||
row128.Append(cell3255);
|
||
row128.Append(cell3256);
|
||
row128.Append(cell3257);
|
||
row128.Append(cell3258);
|
||
row128.Append(cell3259);
|
||
row128.Append(cell3260);
|
||
row128.Append(cell3261);
|
||
row128.Append(cell3262);
|
||
row128.Append(cell3263);
|
||
row128.Append(cell3264);
|
||
row128.Append(cell3265);
|
||
row128.Append(cell3266);
|
||
row128.Append(cell3267);
|
||
row128.Append(cell3268);
|
||
row128.Append(cell3269);
|
||
row128.Append(cell3270);
|
||
row128.Append(cell3271);
|
||
row128.Append(cell3272);
|
||
row128.Append(cell3273);
|
||
row128.Append(cell3274);
|
||
row128.Append(cell3275);
|
||
row128.Append(cell3276);
|
||
|
||
sheetData3.Append(row116);
|
||
sheetData3.Append(row117);
|
||
sheetData3.Append(row118);
|
||
sheetData3.Append(row119);
|
||
sheetData3.Append(row120);
|
||
sheetData3.Append(row121);
|
||
sheetData3.Append(row122);
|
||
sheetData3.Append(row123);
|
||
sheetData3.Append(row124);
|
||
sheetData3.Append(row125);
|
||
sheetData3.Append(row126);
|
||
sheetData3.Append(row127);
|
||
sheetData3.Append(row128);
|
||
|
||
MergeCells mergeCells2 = new MergeCells() { Count = (UInt32Value)42U };
|
||
MergeCell mergeCell52 = new MergeCell() { Reference = "P32:S32" };
|
||
MergeCell mergeCell53 = new MergeCell() { Reference = "P1:R1" };
|
||
MergeCell mergeCell54 = new MergeCell() { Reference = "P2:R2" };
|
||
MergeCell mergeCell55 = new MergeCell() { Reference = "P6:S6" };
|
||
MergeCell mergeCell56 = new MergeCell() { Reference = "P12:S12" };
|
||
MergeCell mergeCell57 = new MergeCell() { Reference = "P18:S18" };
|
||
MergeCell mergeCell58 = new MergeCell() { Reference = "U6:AB6" };
|
||
MergeCell mergeCell59 = new MergeCell() { Reference = "P8:S8" };
|
||
MergeCell mergeCell60 = new MergeCell() { Reference = "U8:AB8" };
|
||
MergeCell mergeCell61 = new MergeCell() { Reference = "P10:S10" };
|
||
MergeCell mergeCell62 = new MergeCell() { Reference = "U10:AB10" };
|
||
MergeCell mergeCell63 = new MergeCell() { Reference = "U12:AB12" };
|
||
MergeCell mergeCell64 = new MergeCell() { Reference = "P14:S14" };
|
||
MergeCell mergeCell65 = new MergeCell() { Reference = "U14:AB14" };
|
||
MergeCell mergeCell66 = new MergeCell() { Reference = "P16:S16" };
|
||
MergeCell mergeCell67 = new MergeCell() { Reference = "U16:AB16" };
|
||
MergeCell mergeCell68 = new MergeCell() { Reference = "U18:AB18" };
|
||
MergeCell mergeCell69 = new MergeCell() { Reference = "C20:D20" };
|
||
MergeCell mergeCell70 = new MergeCell() { Reference = "G20:I20" };
|
||
MergeCell mergeCell71 = new MergeCell() { Reference = "P20:S20" };
|
||
MergeCell mergeCell72 = new MergeCell() { Reference = "U20:AB20" };
|
||
MergeCell mergeCell73 = new MergeCell() { Reference = "C22:D22" };
|
||
MergeCell mergeCell74 = new MergeCell() { Reference = "G22:I22" };
|
||
MergeCell mergeCell75 = new MergeCell() { Reference = "P22:S22" };
|
||
MergeCell mergeCell76 = new MergeCell() { Reference = "U22:AB22" };
|
||
MergeCell mergeCell77 = new MergeCell() { Reference = "P24:S24" };
|
||
MergeCell mergeCell78 = new MergeCell() { Reference = "U24:AB24" };
|
||
MergeCell mergeCell79 = new MergeCell() { Reference = "U26:AB26" };
|
||
MergeCell mergeCell80 = new MergeCell() { Reference = "Q28:R28" };
|
||
MergeCell mergeCell81 = new MergeCell() { Reference = "U28:AB28" };
|
||
MergeCell mergeCell82 = new MergeCell() { Reference = "Q30:R30" };
|
||
MergeCell mergeCell83 = new MergeCell() { Reference = "U30:AB30" };
|
||
MergeCell mergeCell84 = new MergeCell() { Reference = "P26:S26" };
|
||
MergeCell mergeCell85 = new MergeCell() { Reference = "P38:S38" };
|
||
MergeCell mergeCell86 = new MergeCell() { Reference = "U38:AB38" };
|
||
MergeCell mergeCell87 = new MergeCell() { Reference = "P40:S40" };
|
||
MergeCell mergeCell88 = new MergeCell() { Reference = "U40:AB40" };
|
||
MergeCell mergeCell89 = new MergeCell() { Reference = "P33:S33" };
|
||
MergeCell mergeCell90 = new MergeCell() { Reference = "U33:AB33" };
|
||
MergeCell mergeCell91 = new MergeCell() { Reference = "P35:S35" };
|
||
MergeCell mergeCell92 = new MergeCell() { Reference = "P36:S36" };
|
||
MergeCell mergeCell93 = new MergeCell() { Reference = "U36:AB36" };
|
||
|
||
mergeCells2.Append(mergeCell52);
|
||
mergeCells2.Append(mergeCell53);
|
||
mergeCells2.Append(mergeCell54);
|
||
mergeCells2.Append(mergeCell55);
|
||
mergeCells2.Append(mergeCell56);
|
||
mergeCells2.Append(mergeCell57);
|
||
mergeCells2.Append(mergeCell58);
|
||
mergeCells2.Append(mergeCell59);
|
||
mergeCells2.Append(mergeCell60);
|
||
mergeCells2.Append(mergeCell61);
|
||
mergeCells2.Append(mergeCell62);
|
||
mergeCells2.Append(mergeCell63);
|
||
mergeCells2.Append(mergeCell64);
|
||
mergeCells2.Append(mergeCell65);
|
||
mergeCells2.Append(mergeCell66);
|
||
mergeCells2.Append(mergeCell67);
|
||
mergeCells2.Append(mergeCell68);
|
||
mergeCells2.Append(mergeCell69);
|
||
mergeCells2.Append(mergeCell70);
|
||
mergeCells2.Append(mergeCell71);
|
||
mergeCells2.Append(mergeCell72);
|
||
mergeCells2.Append(mergeCell73);
|
||
mergeCells2.Append(mergeCell74);
|
||
mergeCells2.Append(mergeCell75);
|
||
mergeCells2.Append(mergeCell76);
|
||
mergeCells2.Append(mergeCell77);
|
||
mergeCells2.Append(mergeCell78);
|
||
mergeCells2.Append(mergeCell79);
|
||
mergeCells2.Append(mergeCell80);
|
||
mergeCells2.Append(mergeCell81);
|
||
mergeCells2.Append(mergeCell82);
|
||
mergeCells2.Append(mergeCell83);
|
||
mergeCells2.Append(mergeCell84);
|
||
mergeCells2.Append(mergeCell85);
|
||
mergeCells2.Append(mergeCell86);
|
||
mergeCells2.Append(mergeCell87);
|
||
mergeCells2.Append(mergeCell88);
|
||
mergeCells2.Append(mergeCell89);
|
||
mergeCells2.Append(mergeCell90);
|
||
mergeCells2.Append(mergeCell91);
|
||
mergeCells2.Append(mergeCell92);
|
||
mergeCells2.Append(mergeCell93);
|
||
PageMargins pageMargins6 = new PageMargins() { Left = 0.7D, Right = 0.7D, Top = 0.75D, Bottom = 0.75D, Header = 0.3D, Footer = 0.3D };
|
||
PageSetup pageSetup5 = new PageSetup() { PaperSize = (UInt32Value)9U, FitToWidth = (UInt32Value)0U, FitToHeight = (UInt32Value)0U, Orientation = OrientationValues.Portrait, Id = "rId1" };
|
||
Drawing drawing2 = new Drawing() { Id = "rId2" };
|
||
|
||
worksheet3.Append(sheetDimension3);
|
||
worksheet3.Append(sheetViews3);
|
||
worksheet3.Append(sheetFormatProperties3);
|
||
worksheet3.Append(columns2);
|
||
worksheet3.Append(sheetData3);
|
||
worksheet3.Append(mergeCells2);
|
||
worksheet3.Append(pageMargins6);
|
||
worksheet3.Append(pageSetup5);
|
||
worksheet3.Append(drawing2);
|
||
|
||
worksheetPart3.Worksheet = worksheet3;
|
||
}
|
||
|
||
// Generates content of drawingsPart2.
|
||
private void GenerateDrawingsPart2Content(DrawingsPart drawingsPart2)
|
||
{
|
||
Xdr.WorksheetDrawing worksheetDrawing2 = new Xdr.WorksheetDrawing();
|
||
worksheetDrawing2.AddNamespaceDeclaration("xdr", "http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
|
||
worksheetDrawing2.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
|
||
|
||
Xdr.TwoCellAnchor twoCellAnchor4 = new Xdr.TwoCellAnchor();
|
||
|
||
Xdr.FromMarker fromMarker4 = new Xdr.FromMarker();
|
||
Xdr.ColumnId columnId7 = new Xdr.ColumnId();
|
||
columnId7.Text = "1";
|
||
Xdr.ColumnOffset columnOffset7 = new Xdr.ColumnOffset();
|
||
columnOffset7.Text = "95250";
|
||
Xdr.RowId rowId7 = new Xdr.RowId();
|
||
rowId7.Text = "8";
|
||
Xdr.RowOffset rowOffset7 = new Xdr.RowOffset();
|
||
rowOffset7.Text = "9525";
|
||
|
||
fromMarker4.Append(columnId7);
|
||
fromMarker4.Append(columnOffset7);
|
||
fromMarker4.Append(rowId7);
|
||
fromMarker4.Append(rowOffset7);
|
||
|
||
Xdr.ToMarker toMarker4 = new Xdr.ToMarker();
|
||
Xdr.ColumnId columnId8 = new Xdr.ColumnId();
|
||
columnId8.Text = "13";
|
||
Xdr.ColumnOffset columnOffset8 = new Xdr.ColumnOffset();
|
||
columnOffset8.Text = "314325";
|
||
Xdr.RowId rowId8 = new Xdr.RowId();
|
||
rowId8.Text = "16";
|
||
Xdr.RowOffset rowOffset8 = new Xdr.RowOffset();
|
||
rowOffset8.Text = "0";
|
||
|
||
toMarker4.Append(columnId8);
|
||
toMarker4.Append(columnOffset8);
|
||
toMarker4.Append(rowId8);
|
||
toMarker4.Append(rowOffset8);
|
||
|
||
Xdr.Shape shape1 = new Xdr.Shape() { Macro = "", TextLink = "" };
|
||
|
||
Xdr.NonVisualShapeProperties nonVisualShapeProperties1 = new Xdr.NonVisualShapeProperties();
|
||
Xdr.NonVisualDrawingProperties nonVisualDrawingProperties4 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)3U, Name = "Text Box 2" };
|
||
|
||
Xdr.NonVisualShapeDrawingProperties nonVisualShapeDrawingProperties1 = new Xdr.NonVisualShapeDrawingProperties() { TextBox = true };
|
||
A.ShapeLocks shapeLocks1 = new A.ShapeLocks() { NoChangeArrowheads = true };
|
||
|
||
nonVisualShapeDrawingProperties1.Append(shapeLocks1);
|
||
|
||
nonVisualShapeProperties1.Append(nonVisualDrawingProperties4);
|
||
nonVisualShapeProperties1.Append(nonVisualShapeDrawingProperties1);
|
||
|
||
Xdr.ShapeProperties shapeProperties1 = new Xdr.ShapeProperties() { BlackWhiteMode = A.BlackWhiteModeValues.Auto };
|
||
|
||
A.Transform2D transform2D1 = new A.Transform2D();
|
||
A.Offset offset4 = new A.Offset() { X = 476250L, Y = 1457325L };
|
||
A.Extents extents4 = new A.Extents() { Cx = 4791075L, Cy = 1438275L };
|
||
|
||
transform2D1.Append(offset4);
|
||
transform2D1.Append(extents4);
|
||
|
||
A.PresetGeometry presetGeometry1 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
|
||
A.AdjustValueList adjustValueList1 = new A.AdjustValueList();
|
||
|
||
presetGeometry1.Append(adjustValueList1);
|
||
|
||
A.SolidFill solidFill2 = new A.SolidFill();
|
||
A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex() { Val = "FFFFFF" };
|
||
|
||
solidFill2.Append(rgbColorModelHex2);
|
||
|
||
A.Outline outline14 = new A.Outline() { Width = 9525 };
|
||
|
||
A.SolidFill solidFill3 = new A.SolidFill();
|
||
A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex() { Val = "000000" };
|
||
|
||
solidFill3.Append(rgbColorModelHex3);
|
||
A.Miter miter1 = new A.Miter() { Limit = 800000 };
|
||
A.HeadEnd headEnd1 = new A.HeadEnd();
|
||
A.TailEnd tailEnd1 = new A.TailEnd();
|
||
|
||
outline14.Append(solidFill3);
|
||
outline14.Append(miter1);
|
||
outline14.Append(headEnd1);
|
||
outline14.Append(tailEnd1);
|
||
|
||
shapeProperties1.Append(transform2D1);
|
||
shapeProperties1.Append(presetGeometry1);
|
||
shapeProperties1.Append(solidFill2);
|
||
shapeProperties1.Append(outline14);
|
||
|
||
Xdr.TextBody textBody1 = new Xdr.TextBody();
|
||
A.BodyProperties bodyProperties1 = new A.BodyProperties() { VerticalOverflow = A.TextVerticalOverflowValues.Clip, Wrap = A.TextWrappingValues.Square, LeftInset = 45720, TopInset = 32004, RightInset = 45720, BottomInset = 0, Anchor = A.TextAnchoringTypeValues.Top, UpRight = true };
|
||
A.ListStyle listStyle1 = new A.ListStyle();
|
||
|
||
A.Paragraph paragraph1 = new A.Paragraph();
|
||
|
||
A.ParagraphProperties paragraphProperties1 = new A.ParagraphProperties() { Alignment = A.TextAlignmentTypeValues.Center, RightToLeft = false };
|
||
A.DefaultRunProperties defaultRunProperties1 = new A.DefaultRunProperties() { FontSize = 1000 };
|
||
|
||
paragraphProperties1.Append(defaultRunProperties1);
|
||
|
||
A.Run run1 = new A.Run();
|
||
|
||
A.RunProperties runProperties1 = new A.RunProperties() { Language = "en-US", AlternativeLanguage = "ja-JP", FontSize = 2400, Bold = false, Italic = false, Underline = A.TextUnderlineValues.None, Strike = A.TextStrikeValues.NoStrike, Baseline = 0 };
|
||
|
||
A.SolidFill solidFill4 = new A.SolidFill();
|
||
A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex() { Val = "000000" };
|
||
|
||
solidFill4.Append(rgbColorModelHex4);
|
||
A.LatinFont latinFont1 = new A.LatinFont() { Typeface = "Segoe UI", PitchFamily = 34, CharacterSet = 0 };
|
||
A.EastAsianFont eastAsianFont1 = new A.EastAsianFont() { Typeface = "MS Pゴシック" };
|
||
|
||
runProperties1.Append(solidFill4);
|
||
runProperties1.Append(latinFont1);
|
||
runProperties1.Append(eastAsianFont1);
|
||
A.Text text1 = new A.Text();
|
||
text1.Text = "Head and Leg";
|
||
|
||
run1.Append(runProperties1);
|
||
run1.Append(text1);
|
||
|
||
paragraph1.Append(paragraphProperties1);
|
||
paragraph1.Append(run1);
|
||
|
||
A.Paragraph paragraph2 = new A.Paragraph();
|
||
|
||
A.ParagraphProperties paragraphProperties2 = new A.ParagraphProperties() { Alignment = A.TextAlignmentTypeValues.Center, RightToLeft = false };
|
||
A.DefaultRunProperties defaultRunProperties2 = new A.DefaultRunProperties() { FontSize = 1000 };
|
||
|
||
paragraphProperties2.Append(defaultRunProperties2);
|
||
|
||
A.Run run2 = new A.Run();
|
||
|
||
A.RunProperties runProperties2 = new A.RunProperties() { Language = "en-US", AlternativeLanguage = "ja-JP", FontSize = 2400, Bold = false, Italic = false, Underline = A.TextUnderlineValues.None, Strike = A.TextStrikeValues.NoStrike, Baseline = 0 };
|
||
|
||
A.SolidFill solidFill5 = new A.SolidFill();
|
||
A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex() { Val = "000000" };
|
||
|
||
solidFill5.Append(rgbColorModelHex5);
|
||
A.LatinFont latinFont2 = new A.LatinFont() { Typeface = "Segoe UI", PitchFamily = 34, CharacterSet = 0 };
|
||
A.EastAsianFont eastAsianFont2 = new A.EastAsianFont() { Typeface = "MS Pゴシック" };
|
||
|
||
runProperties2.Append(solidFill5);
|
||
runProperties2.Append(latinFont2);
|
||
runProperties2.Append(eastAsianFont2);
|
||
A.Text text2 = new A.Text();
|
||
text2.Text = "Protection of Pedestrians ";
|
||
|
||
run2.Append(runProperties2);
|
||
run2.Append(text2);
|
||
|
||
paragraph2.Append(paragraphProperties2);
|
||
paragraph2.Append(run2);
|
||
|
||
A.Paragraph paragraph3 = new A.Paragraph();
|
||
|
||
A.ParagraphProperties paragraphProperties3 = new A.ParagraphProperties() { Alignment = A.TextAlignmentTypeValues.Center, RightToLeft = false };
|
||
A.DefaultRunProperties defaultRunProperties3 = new A.DefaultRunProperties() { FontSize = 1000 };
|
||
|
||
paragraphProperties3.Append(defaultRunProperties3);
|
||
|
||
A.Run run3 = new A.Run();
|
||
|
||
A.RunProperties runProperties3 = new A.RunProperties() { Language = "en-US", AlternativeLanguage = "ja-JP", FontSize = 2400, Bold = false, Italic = false, Underline = A.TextUnderlineValues.None, Strike = A.TextStrikeValues.NoStrike, Baseline = 0 };
|
||
|
||
A.SolidFill solidFill6 = new A.SolidFill();
|
||
A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex() { Val = "000000" };
|
||
|
||
solidFill6.Append(rgbColorModelHex6);
|
||
A.LatinFont latinFont3 = new A.LatinFont() { Typeface = "Segoe UI", PitchFamily = 34, CharacterSet = 0 };
|
||
A.EastAsianFont eastAsianFont3 = new A.EastAsianFont() { Typeface = "MS Pゴシック" };
|
||
|
||
runProperties3.Append(solidFill6);
|
||
runProperties3.Append(latinFont3);
|
||
runProperties3.Append(eastAsianFont3);
|
||
A.Text text3 = new A.Text();
|
||
text3.Text = "Test";
|
||
|
||
run3.Append(runProperties3);
|
||
run3.Append(text3);
|
||
|
||
paragraph3.Append(paragraphProperties3);
|
||
paragraph3.Append(run3);
|
||
|
||
textBody1.Append(bodyProperties1);
|
||
textBody1.Append(listStyle1);
|
||
textBody1.Append(paragraph1);
|
||
textBody1.Append(paragraph2);
|
||
textBody1.Append(paragraph3);
|
||
|
||
shape1.Append(nonVisualShapeProperties1);
|
||
shape1.Append(shapeProperties1);
|
||
shape1.Append(textBody1);
|
||
Xdr.ClientData clientData4 = new Xdr.ClientData();
|
||
|
||
twoCellAnchor4.Append(fromMarker4);
|
||
twoCellAnchor4.Append(toMarker4);
|
||
twoCellAnchor4.Append(shape1);
|
||
twoCellAnchor4.Append(clientData4);
|
||
|
||
worksheetDrawing2.Append(twoCellAnchor4);
|
||
|
||
drawingsPart2.WorksheetDrawing = worksheetDrawing2;
|
||
}
|
||
|
||
// Generates content of spreadsheetPrinterSettingsPart2.
|
||
private void GenerateSpreadsheetPrinterSettingsPart2Content(SpreadsheetPrinterSettingsPart spreadsheetPrinterSettingsPart2)
|
||
{
|
||
System.IO.Stream data = GetBinaryDataStream(spreadsheetPrinterSettingsPart2Data);
|
||
spreadsheetPrinterSettingsPart2.FeedData(data);
|
||
data.Close();
|
||
}
|
||
|
||
|
||
|
||
// Generates content of workbookStylesPart1.
|
||
private void GenerateWorkbookStylesPart1Content(WorkbookStylesPart workbookStylesPart1)
|
||
{
|
||
Stylesheet stylesheet1 = new Stylesheet() { MCAttributes = new MarkupCompatibilityAttributes() { Ignorable = "x14ac" } };
|
||
stylesheet1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
|
||
stylesheet1.AddNamespaceDeclaration("x14ac", "http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac");
|
||
|
||
Fonts fonts1 = new Fonts() { Count = (UInt32Value)31U };
|
||
|
||
Font font1 = new Font();
|
||
FontSize fontSize1 = new FontSize() { Val = 11D };
|
||
Color color1 = new Color() { Theme = (UInt32Value)1U };
|
||
FontName fontName1 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering1 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet1 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme1 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font1.Append(fontSize1);
|
||
font1.Append(color1);
|
||
font1.Append(fontName1);
|
||
font1.Append(fontFamilyNumbering1);
|
||
font1.Append(fontCharSet1);
|
||
font1.Append(fontScheme1);
|
||
|
||
Font font2 = new Font();
|
||
FontSize fontSize2 = new FontSize() { Val = 11D };
|
||
Color color2 = new Color() { Theme = (UInt32Value)1U };
|
||
FontName fontName2 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering2 = new FontFamilyNumbering() { Val = 2 };
|
||
FontScheme fontScheme2 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font2.Append(fontSize2);
|
||
font2.Append(color2);
|
||
font2.Append(fontName2);
|
||
font2.Append(fontFamilyNumbering2);
|
||
font2.Append(fontScheme2);
|
||
|
||
Font font3 = new Font();
|
||
FontSize fontSize3 = new FontSize() { Val = 11D };
|
||
Color color3 = new Color() { Theme = (UInt32Value)1U };
|
||
FontName fontName3 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering3 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet2 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme3 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font3.Append(fontSize3);
|
||
font3.Append(color3);
|
||
font3.Append(fontName3);
|
||
font3.Append(fontFamilyNumbering3);
|
||
font3.Append(fontCharSet2);
|
||
font3.Append(fontScheme3);
|
||
|
||
Font font4 = new Font();
|
||
Bold bold1 = new Bold();
|
||
FontSize fontSize4 = new FontSize() { Val = 18D };
|
||
Color color4 = new Color() { Theme = (UInt32Value)3U };
|
||
FontName fontName4 = new FontName() { Val = "Cambria" };
|
||
FontFamilyNumbering fontFamilyNumbering4 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet3 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme4 = new FontScheme() { Val = FontSchemeValues.Major };
|
||
|
||
font4.Append(bold1);
|
||
font4.Append(fontSize4);
|
||
font4.Append(color4);
|
||
font4.Append(fontName4);
|
||
font4.Append(fontFamilyNumbering4);
|
||
font4.Append(fontCharSet3);
|
||
font4.Append(fontScheme4);
|
||
|
||
Font font5 = new Font();
|
||
Bold bold2 = new Bold();
|
||
FontSize fontSize5 = new FontSize() { Val = 15D };
|
||
Color color5 = new Color() { Theme = (UInt32Value)3U };
|
||
FontName fontName5 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering5 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet4 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme5 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font5.Append(bold2);
|
||
font5.Append(fontSize5);
|
||
font5.Append(color5);
|
||
font5.Append(fontName5);
|
||
font5.Append(fontFamilyNumbering5);
|
||
font5.Append(fontCharSet4);
|
||
font5.Append(fontScheme5);
|
||
|
||
Font font6 = new Font();
|
||
Bold bold3 = new Bold();
|
||
FontSize fontSize6 = new FontSize() { Val = 13D };
|
||
Color color6 = new Color() { Theme = (UInt32Value)3U };
|
||
FontName fontName6 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering6 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet5 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme6 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font6.Append(bold3);
|
||
font6.Append(fontSize6);
|
||
font6.Append(color6);
|
||
font6.Append(fontName6);
|
||
font6.Append(fontFamilyNumbering6);
|
||
font6.Append(fontCharSet5);
|
||
font6.Append(fontScheme6);
|
||
|
||
Font font7 = new Font();
|
||
Bold bold4 = new Bold();
|
||
FontSize fontSize7 = new FontSize() { Val = 11D };
|
||
Color color7 = new Color() { Theme = (UInt32Value)3U };
|
||
FontName fontName7 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering7 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet6 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme7 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font7.Append(bold4);
|
||
font7.Append(fontSize7);
|
||
font7.Append(color7);
|
||
font7.Append(fontName7);
|
||
font7.Append(fontFamilyNumbering7);
|
||
font7.Append(fontCharSet6);
|
||
font7.Append(fontScheme7);
|
||
|
||
Font font8 = new Font();
|
||
FontSize fontSize8 = new FontSize() { Val = 11D };
|
||
Color color8 = new Color() { Rgb = "FF006100" };
|
||
FontName fontName8 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering8 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet7 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme8 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font8.Append(fontSize8);
|
||
font8.Append(color8);
|
||
font8.Append(fontName8);
|
||
font8.Append(fontFamilyNumbering8);
|
||
font8.Append(fontCharSet7);
|
||
font8.Append(fontScheme8);
|
||
|
||
Font font9 = new Font();
|
||
FontSize fontSize9 = new FontSize() { Val = 11D };
|
||
Color color9 = new Color() { Rgb = "FF9C0006" };
|
||
FontName fontName9 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering9 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet8 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme9 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font9.Append(fontSize9);
|
||
font9.Append(color9);
|
||
font9.Append(fontName9);
|
||
font9.Append(fontFamilyNumbering9);
|
||
font9.Append(fontCharSet8);
|
||
font9.Append(fontScheme9);
|
||
|
||
Font font10 = new Font();
|
||
FontSize fontSize10 = new FontSize() { Val = 11D };
|
||
Color color10 = new Color() { Rgb = "FF9C6500" };
|
||
FontName fontName10 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering10 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet9 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme10 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font10.Append(fontSize10);
|
||
font10.Append(color10);
|
||
font10.Append(fontName10);
|
||
font10.Append(fontFamilyNumbering10);
|
||
font10.Append(fontCharSet9);
|
||
font10.Append(fontScheme10);
|
||
|
||
Font font11 = new Font();
|
||
FontSize fontSize11 = new FontSize() { Val = 11D };
|
||
Color color11 = new Color() { Rgb = "FF3F3F76" };
|
||
FontName fontName11 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering11 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet10 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme11 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font11.Append(fontSize11);
|
||
font11.Append(color11);
|
||
font11.Append(fontName11);
|
||
font11.Append(fontFamilyNumbering11);
|
||
font11.Append(fontCharSet10);
|
||
font11.Append(fontScheme11);
|
||
|
||
Font font12 = new Font();
|
||
Bold bold5 = new Bold();
|
||
FontSize fontSize12 = new FontSize() { Val = 11D };
|
||
Color color12 = new Color() { Rgb = "FF3F3F3F" };
|
||
FontName fontName12 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering12 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet11 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme12 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font12.Append(bold5);
|
||
font12.Append(fontSize12);
|
||
font12.Append(color12);
|
||
font12.Append(fontName12);
|
||
font12.Append(fontFamilyNumbering12);
|
||
font12.Append(fontCharSet11);
|
||
font12.Append(fontScheme12);
|
||
|
||
Font font13 = new Font();
|
||
Bold bold6 = new Bold();
|
||
FontSize fontSize13 = new FontSize() { Val = 11D };
|
||
Color color13 = new Color() { Rgb = "FFFA7D00" };
|
||
FontName fontName13 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering13 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet12 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme13 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font13.Append(bold6);
|
||
font13.Append(fontSize13);
|
||
font13.Append(color13);
|
||
font13.Append(fontName13);
|
||
font13.Append(fontFamilyNumbering13);
|
||
font13.Append(fontCharSet12);
|
||
font13.Append(fontScheme13);
|
||
|
||
Font font14 = new Font();
|
||
FontSize fontSize14 = new FontSize() { Val = 11D };
|
||
Color color14 = new Color() { Rgb = "FFFA7D00" };
|
||
FontName fontName14 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering14 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet13 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme14 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font14.Append(fontSize14);
|
||
font14.Append(color14);
|
||
font14.Append(fontName14);
|
||
font14.Append(fontFamilyNumbering14);
|
||
font14.Append(fontCharSet13);
|
||
font14.Append(fontScheme14);
|
||
|
||
Font font15 = new Font();
|
||
Bold bold7 = new Bold();
|
||
FontSize fontSize15 = new FontSize() { Val = 11D };
|
||
Color color15 = new Color() { Theme = (UInt32Value)0U };
|
||
FontName fontName15 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering15 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet14 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme15 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font15.Append(bold7);
|
||
font15.Append(fontSize15);
|
||
font15.Append(color15);
|
||
font15.Append(fontName15);
|
||
font15.Append(fontFamilyNumbering15);
|
||
font15.Append(fontCharSet14);
|
||
font15.Append(fontScheme15);
|
||
|
||
Font font16 = new Font();
|
||
FontSize fontSize16 = new FontSize() { Val = 11D };
|
||
Color color16 = new Color() { Rgb = "FFFF0000" };
|
||
FontName fontName16 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering16 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet15 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme16 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font16.Append(fontSize16);
|
||
font16.Append(color16);
|
||
font16.Append(fontName16);
|
||
font16.Append(fontFamilyNumbering16);
|
||
font16.Append(fontCharSet15);
|
||
font16.Append(fontScheme16);
|
||
|
||
Font font17 = new Font();
|
||
Italic italic1 = new Italic();
|
||
FontSize fontSize17 = new FontSize() { Val = 11D };
|
||
Color color17 = new Color() { Rgb = "FF7F7F7F" };
|
||
FontName fontName17 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering17 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet16 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme17 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font17.Append(italic1);
|
||
font17.Append(fontSize17);
|
||
font17.Append(color17);
|
||
font17.Append(fontName17);
|
||
font17.Append(fontFamilyNumbering17);
|
||
font17.Append(fontCharSet16);
|
||
font17.Append(fontScheme17);
|
||
|
||
Font font18 = new Font();
|
||
Bold bold8 = new Bold();
|
||
FontSize fontSize18 = new FontSize() { Val = 11D };
|
||
Color color18 = new Color() { Theme = (UInt32Value)1U };
|
||
FontName fontName18 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering18 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet17 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme18 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font18.Append(bold8);
|
||
font18.Append(fontSize18);
|
||
font18.Append(color18);
|
||
font18.Append(fontName18);
|
||
font18.Append(fontFamilyNumbering18);
|
||
font18.Append(fontCharSet17);
|
||
font18.Append(fontScheme18);
|
||
|
||
Font font19 = new Font();
|
||
FontSize fontSize19 = new FontSize() { Val = 11D };
|
||
Color color19 = new Color() { Theme = (UInt32Value)0U };
|
||
FontName fontName19 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering19 = new FontFamilyNumbering() { Val = 2 };
|
||
FontCharSet fontCharSet18 = new FontCharSet() { Val = 128 };
|
||
FontScheme fontScheme19 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font19.Append(fontSize19);
|
||
font19.Append(color19);
|
||
font19.Append(fontName19);
|
||
font19.Append(fontFamilyNumbering19);
|
||
font19.Append(fontCharSet18);
|
||
font19.Append(fontScheme19);
|
||
|
||
Font font20 = new Font();
|
||
FontSize fontSize20 = new FontSize() { Val = 11D };
|
||
FontName fontName20 = new FontName() { Val = "MS Pゴシック" };
|
||
FontFamilyNumbering fontFamilyNumbering20 = new FontFamilyNumbering() { Val = 3 };
|
||
FontCharSet fontCharSet19 = new FontCharSet() { Val = 128 };
|
||
|
||
font20.Append(fontSize20);
|
||
font20.Append(fontName20);
|
||
font20.Append(fontFamilyNumbering20);
|
||
font20.Append(fontCharSet19);
|
||
|
||
Font font21 = new Font();
|
||
FontSize fontSize21 = new FontSize() { Val = 9D };
|
||
Color color20 = new Color() { Theme = (UInt32Value)1U };
|
||
FontName fontName21 = new FontName() { Val = "Segoe UI" };
|
||
FontFamilyNumbering fontFamilyNumbering21 = new FontFamilyNumbering() { Val = 2 };
|
||
|
||
font21.Append(fontSize21);
|
||
font21.Append(color20);
|
||
font21.Append(fontName21);
|
||
font21.Append(fontFamilyNumbering21);
|
||
|
||
Font font22 = new Font();
|
||
FontSize fontSize22 = new FontSize() { Val = 10D };
|
||
Color color21 = new Color() { Theme = (UInt32Value)1U };
|
||
FontName fontName22 = new FontName() { Val = "Segoe UI" };
|
||
FontFamilyNumbering fontFamilyNumbering22 = new FontFamilyNumbering() { Val = 2 };
|
||
|
||
font22.Append(fontSize22);
|
||
font22.Append(color21);
|
||
font22.Append(fontName22);
|
||
font22.Append(fontFamilyNumbering22);
|
||
|
||
Font font23 = new Font();
|
||
FontSize fontSize23 = new FontSize() { Val = 11D };
|
||
Color color22 = new Color() { Theme = (UInt32Value)1U };
|
||
FontName fontName23 = new FontName() { Val = "Segoe UI" };
|
||
FontFamilyNumbering fontFamilyNumbering23 = new FontFamilyNumbering() { Val = 2 };
|
||
|
||
font23.Append(fontSize23);
|
||
font23.Append(color22);
|
||
font23.Append(fontName23);
|
||
font23.Append(fontFamilyNumbering23);
|
||
|
||
Font font24 = new Font();
|
||
Bold bold9 = new Bold();
|
||
FontSize fontSize24 = new FontSize() { Val = 11D };
|
||
FontName fontName24 = new FontName() { Val = "Segoe UI" };
|
||
FontFamilyNumbering fontFamilyNumbering24 = new FontFamilyNumbering() { Val = 2 };
|
||
|
||
font24.Append(bold9);
|
||
font24.Append(fontSize24);
|
||
font24.Append(fontName24);
|
||
font24.Append(fontFamilyNumbering24);
|
||
|
||
Font font25 = new Font();
|
||
FontSize fontSize25 = new FontSize() { Val = 11D };
|
||
FontName fontName25 = new FontName() { Val = "Segoe UI" };
|
||
FontFamilyNumbering fontFamilyNumbering25 = new FontFamilyNumbering() { Val = 2 };
|
||
|
||
font25.Append(fontSize25);
|
||
font25.Append(fontName25);
|
||
font25.Append(fontFamilyNumbering25);
|
||
|
||
Font font26 = new Font();
|
||
Bold bold10 = new Bold();
|
||
FontSize fontSize26 = new FontSize() { Val = 11D };
|
||
Color color23 = new Color() { Theme = (UInt32Value)1U };
|
||
FontName fontName26 = new FontName() { Val = "Segoe UI" };
|
||
FontFamilyNumbering fontFamilyNumbering26 = new FontFamilyNumbering() { Val = 2 };
|
||
|
||
font26.Append(bold10);
|
||
font26.Append(fontSize26);
|
||
font26.Append(color23);
|
||
font26.Append(fontName26);
|
||
font26.Append(fontFamilyNumbering26);
|
||
|
||
Font font27 = new Font();
|
||
Bold bold11 = new Bold();
|
||
FontSize fontSize27 = new FontSize() { Val = 11D };
|
||
Color color24 = new Color() { Theme = (UInt32Value)1U };
|
||
FontName fontName27 = new FontName() { Val = "Calibri" };
|
||
FontFamilyNumbering fontFamilyNumbering27 = new FontFamilyNumbering() { Val = 2 };
|
||
FontScheme fontScheme20 = new FontScheme() { Val = FontSchemeValues.Minor };
|
||
|
||
font27.Append(bold11);
|
||
font27.Append(fontSize27);
|
||
font27.Append(color24);
|
||
font27.Append(fontName27);
|
||
font27.Append(fontFamilyNumbering27);
|
||
font27.Append(fontScheme20);
|
||
|
||
Font font28 = new Font();
|
||
FontSize fontSize28 = new FontSize() { Val = 10D };
|
||
Color color25 = new Color() { Theme = (UInt32Value)4U };
|
||
FontName fontName28 = new FontName() { Val = "Segoe UI" };
|
||
FontFamilyNumbering fontFamilyNumbering28 = new FontFamilyNumbering() { Val = 2 };
|
||
|
||
font28.Append(fontSize28);
|
||
font28.Append(color25);
|
||
font28.Append(fontName28);
|
||
font28.Append(fontFamilyNumbering28);
|
||
|
||
Font font29 = new Font();
|
||
FontSize fontSize29 = new FontSize() { Val = 11D };
|
||
Color color26 = new Color() { Rgb = "FF00B050" };
|
||
FontName fontName29 = new FontName() { Val = "Segoe UI" };
|
||
FontFamilyNumbering fontFamilyNumbering29 = new FontFamilyNumbering() { Val = 2 };
|
||
|
||
font29.Append(fontSize29);
|
||
font29.Append(color26);
|
||
font29.Append(fontName29);
|
||
font29.Append(fontFamilyNumbering29);
|
||
|
||
Font font30 = new Font();
|
||
FontSize fontSize30 = new FontSize() { Val = 11D };
|
||
Color color27 = new Color() { Rgb = "FFFFC000" };
|
||
FontName fontName30 = new FontName() { Val = "Segoe UI" };
|
||
FontFamilyNumbering fontFamilyNumbering30 = new FontFamilyNumbering() { Val = 2 };
|
||
|
||
font30.Append(fontSize30);
|
||
font30.Append(color27);
|
||
font30.Append(fontName30);
|
||
font30.Append(fontFamilyNumbering30);
|
||
|
||
Font font31 = new Font();
|
||
FontSize fontSize31 = new FontSize() { Val = 10D };
|
||
Color color28 = new Color() { Rgb = "FF0070C0" };
|
||
FontName fontName31 = new FontName() { Val = "Segoe UI" };
|
||
FontFamilyNumbering fontFamilyNumbering31 = new FontFamilyNumbering() { Val = 2 };
|
||
|
||
font31.Append(fontSize31);
|
||
font31.Append(color28);
|
||
font31.Append(fontName31);
|
||
font31.Append(fontFamilyNumbering31);
|
||
|
||
fonts1.Append(font1);
|
||
fonts1.Append(font2);
|
||
fonts1.Append(font3);
|
||
fonts1.Append(font4);
|
||
fonts1.Append(font5);
|
||
fonts1.Append(font6);
|
||
fonts1.Append(font7);
|
||
fonts1.Append(font8);
|
||
fonts1.Append(font9);
|
||
fonts1.Append(font10);
|
||
fonts1.Append(font11);
|
||
fonts1.Append(font12);
|
||
fonts1.Append(font13);
|
||
fonts1.Append(font14);
|
||
fonts1.Append(font15);
|
||
fonts1.Append(font16);
|
||
fonts1.Append(font17);
|
||
fonts1.Append(font18);
|
||
fonts1.Append(font19);
|
||
fonts1.Append(font20);
|
||
fonts1.Append(font21);
|
||
fonts1.Append(font22);
|
||
fonts1.Append(font23);
|
||
fonts1.Append(font24);
|
||
fonts1.Append(font25);
|
||
fonts1.Append(font26);
|
||
fonts1.Append(font27);
|
||
fonts1.Append(font28);
|
||
fonts1.Append(font29);
|
||
fonts1.Append(font30);
|
||
fonts1.Append(font31);
|
||
|
||
Fills fills1 = new Fills() { Count = (UInt32Value)36U };
|
||
|
||
Fill fill1 = new Fill();
|
||
PatternFill patternFill1 = new PatternFill() { PatternType = PatternValues.None };
|
||
|
||
fill1.Append(patternFill1);
|
||
|
||
Fill fill2 = new Fill();
|
||
PatternFill patternFill2 = new PatternFill() { PatternType = PatternValues.Gray125 };
|
||
|
||
fill2.Append(patternFill2);
|
||
|
||
Fill fill3 = new Fill();
|
||
|
||
PatternFill patternFill3 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor1 = new ForegroundColor() { Rgb = "FFC6EFCE" };
|
||
|
||
patternFill3.Append(foregroundColor1);
|
||
|
||
fill3.Append(patternFill3);
|
||
|
||
Fill fill4 = new Fill();
|
||
|
||
PatternFill patternFill4 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor2 = new ForegroundColor() { Rgb = "FFFFC7CE" };
|
||
|
||
patternFill4.Append(foregroundColor2);
|
||
|
||
fill4.Append(patternFill4);
|
||
|
||
Fill fill5 = new Fill();
|
||
|
||
PatternFill patternFill5 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor3 = new ForegroundColor() { Rgb = "FFFFEB9C" };
|
||
|
||
patternFill5.Append(foregroundColor3);
|
||
|
||
fill5.Append(patternFill5);
|
||
|
||
Fill fill6 = new Fill();
|
||
|
||
PatternFill patternFill6 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor4 = new ForegroundColor() { Rgb = "FFFFCC99" };
|
||
|
||
patternFill6.Append(foregroundColor4);
|
||
|
||
fill6.Append(patternFill6);
|
||
|
||
Fill fill7 = new Fill();
|
||
|
||
PatternFill patternFill7 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor5 = new ForegroundColor() { Rgb = "FFF2F2F2" };
|
||
|
||
patternFill7.Append(foregroundColor5);
|
||
|
||
fill7.Append(patternFill7);
|
||
|
||
Fill fill8 = new Fill();
|
||
|
||
PatternFill patternFill8 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor6 = new ForegroundColor() { Rgb = "FFA5A5A5" };
|
||
|
||
patternFill8.Append(foregroundColor6);
|
||
|
||
fill8.Append(patternFill8);
|
||
|
||
Fill fill9 = new Fill();
|
||
|
||
PatternFill patternFill9 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor7 = new ForegroundColor() { Rgb = "FFFFFFCC" };
|
||
|
||
patternFill9.Append(foregroundColor7);
|
||
|
||
fill9.Append(patternFill9);
|
||
|
||
Fill fill10 = new Fill();
|
||
|
||
PatternFill patternFill10 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor8 = new ForegroundColor() { Theme = (UInt32Value)4U };
|
||
|
||
patternFill10.Append(foregroundColor8);
|
||
|
||
fill10.Append(patternFill10);
|
||
|
||
Fill fill11 = new Fill();
|
||
|
||
PatternFill patternFill11 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor9 = new ForegroundColor() { Theme = (UInt32Value)4U, Tint = 0.79998168889431442D };
|
||
BackgroundColor backgroundColor1 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill11.Append(foregroundColor9);
|
||
patternFill11.Append(backgroundColor1);
|
||
|
||
fill11.Append(patternFill11);
|
||
|
||
Fill fill12 = new Fill();
|
||
|
||
PatternFill patternFill12 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor10 = new ForegroundColor() { Theme = (UInt32Value)4U, Tint = 0.59999389629810485D };
|
||
BackgroundColor backgroundColor2 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill12.Append(foregroundColor10);
|
||
patternFill12.Append(backgroundColor2);
|
||
|
||
fill12.Append(patternFill12);
|
||
|
||
Fill fill13 = new Fill();
|
||
|
||
PatternFill patternFill13 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor11 = new ForegroundColor() { Theme = (UInt32Value)4U, Tint = 0.39997558519241921D };
|
||
BackgroundColor backgroundColor3 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill13.Append(foregroundColor11);
|
||
patternFill13.Append(backgroundColor3);
|
||
|
||
fill13.Append(patternFill13);
|
||
|
||
Fill fill14 = new Fill();
|
||
|
||
PatternFill patternFill14 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor12 = new ForegroundColor() { Theme = (UInt32Value)5U };
|
||
|
||
patternFill14.Append(foregroundColor12);
|
||
|
||
fill14.Append(patternFill14);
|
||
|
||
Fill fill15 = new Fill();
|
||
|
||
PatternFill patternFill15 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor13 = new ForegroundColor() { Theme = (UInt32Value)5U, Tint = 0.79998168889431442D };
|
||
BackgroundColor backgroundColor4 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill15.Append(foregroundColor13);
|
||
patternFill15.Append(backgroundColor4);
|
||
|
||
fill15.Append(patternFill15);
|
||
|
||
Fill fill16 = new Fill();
|
||
|
||
PatternFill patternFill16 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor14 = new ForegroundColor() { Theme = (UInt32Value)5U, Tint = 0.59999389629810485D };
|
||
BackgroundColor backgroundColor5 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill16.Append(foregroundColor14);
|
||
patternFill16.Append(backgroundColor5);
|
||
|
||
fill16.Append(patternFill16);
|
||
|
||
Fill fill17 = new Fill();
|
||
|
||
PatternFill patternFill17 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor15 = new ForegroundColor() { Theme = (UInt32Value)5U, Tint = 0.39997558519241921D };
|
||
BackgroundColor backgroundColor6 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill17.Append(foregroundColor15);
|
||
patternFill17.Append(backgroundColor6);
|
||
|
||
fill17.Append(patternFill17);
|
||
|
||
Fill fill18 = new Fill();
|
||
|
||
PatternFill patternFill18 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor16 = new ForegroundColor() { Theme = (UInt32Value)6U };
|
||
|
||
patternFill18.Append(foregroundColor16);
|
||
|
||
fill18.Append(patternFill18);
|
||
|
||
Fill fill19 = new Fill();
|
||
|
||
PatternFill patternFill19 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor17 = new ForegroundColor() { Theme = (UInt32Value)6U, Tint = 0.79998168889431442D };
|
||
BackgroundColor backgroundColor7 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill19.Append(foregroundColor17);
|
||
patternFill19.Append(backgroundColor7);
|
||
|
||
fill19.Append(patternFill19);
|
||
|
||
Fill fill20 = new Fill();
|
||
|
||
PatternFill patternFill20 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor18 = new ForegroundColor() { Theme = (UInt32Value)6U, Tint = 0.59999389629810485D };
|
||
BackgroundColor backgroundColor8 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill20.Append(foregroundColor18);
|
||
patternFill20.Append(backgroundColor8);
|
||
|
||
fill20.Append(patternFill20);
|
||
|
||
Fill fill21 = new Fill();
|
||
|
||
PatternFill patternFill21 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor19 = new ForegroundColor() { Theme = (UInt32Value)6U, Tint = 0.39997558519241921D };
|
||
BackgroundColor backgroundColor9 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill21.Append(foregroundColor19);
|
||
patternFill21.Append(backgroundColor9);
|
||
|
||
fill21.Append(patternFill21);
|
||
|
||
Fill fill22 = new Fill();
|
||
|
||
PatternFill patternFill22 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor20 = new ForegroundColor() { Theme = (UInt32Value)7U };
|
||
|
||
patternFill22.Append(foregroundColor20);
|
||
|
||
fill22.Append(patternFill22);
|
||
|
||
Fill fill23 = new Fill();
|
||
|
||
PatternFill patternFill23 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor21 = new ForegroundColor() { Theme = (UInt32Value)7U, Tint = 0.79998168889431442D };
|
||
BackgroundColor backgroundColor10 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill23.Append(foregroundColor21);
|
||
patternFill23.Append(backgroundColor10);
|
||
|
||
fill23.Append(patternFill23);
|
||
|
||
Fill fill24 = new Fill();
|
||
|
||
PatternFill patternFill24 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor22 = new ForegroundColor() { Theme = (UInt32Value)7U, Tint = 0.59999389629810485D };
|
||
BackgroundColor backgroundColor11 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill24.Append(foregroundColor22);
|
||
patternFill24.Append(backgroundColor11);
|
||
|
||
fill24.Append(patternFill24);
|
||
|
||
Fill fill25 = new Fill();
|
||
|
||
PatternFill patternFill25 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor23 = new ForegroundColor() { Theme = (UInt32Value)7U, Tint = 0.39997558519241921D };
|
||
BackgroundColor backgroundColor12 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill25.Append(foregroundColor23);
|
||
patternFill25.Append(backgroundColor12);
|
||
|
||
fill25.Append(patternFill25);
|
||
|
||
Fill fill26 = new Fill();
|
||
|
||
PatternFill patternFill26 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor24 = new ForegroundColor() { Theme = (UInt32Value)8U };
|
||
|
||
patternFill26.Append(foregroundColor24);
|
||
|
||
fill26.Append(patternFill26);
|
||
|
||
Fill fill27 = new Fill();
|
||
|
||
PatternFill patternFill27 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor25 = new ForegroundColor() { Theme = (UInt32Value)8U, Tint = 0.79998168889431442D };
|
||
BackgroundColor backgroundColor13 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill27.Append(foregroundColor25);
|
||
patternFill27.Append(backgroundColor13);
|
||
|
||
fill27.Append(patternFill27);
|
||
|
||
Fill fill28 = new Fill();
|
||
|
||
PatternFill patternFill28 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor26 = new ForegroundColor() { Theme = (UInt32Value)8U, Tint = 0.59999389629810485D };
|
||
BackgroundColor backgroundColor14 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill28.Append(foregroundColor26);
|
||
patternFill28.Append(backgroundColor14);
|
||
|
||
fill28.Append(patternFill28);
|
||
|
||
Fill fill29 = new Fill();
|
||
|
||
PatternFill patternFill29 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor27 = new ForegroundColor() { Theme = (UInt32Value)8U, Tint = 0.39997558519241921D };
|
||
BackgroundColor backgroundColor15 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill29.Append(foregroundColor27);
|
||
patternFill29.Append(backgroundColor15);
|
||
|
||
fill29.Append(patternFill29);
|
||
|
||
Fill fill30 = new Fill();
|
||
|
||
PatternFill patternFill30 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor28 = new ForegroundColor() { Theme = (UInt32Value)9U };
|
||
|
||
patternFill30.Append(foregroundColor28);
|
||
|
||
fill30.Append(patternFill30);
|
||
|
||
Fill fill31 = new Fill();
|
||
|
||
PatternFill patternFill31 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor29 = new ForegroundColor() { Theme = (UInt32Value)9U, Tint = 0.79998168889431442D };
|
||
BackgroundColor backgroundColor16 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill31.Append(foregroundColor29);
|
||
patternFill31.Append(backgroundColor16);
|
||
|
||
fill31.Append(patternFill31);
|
||
|
||
Fill fill32 = new Fill();
|
||
|
||
PatternFill patternFill32 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor30 = new ForegroundColor() { Theme = (UInt32Value)9U, Tint = 0.59999389629810485D };
|
||
BackgroundColor backgroundColor17 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill32.Append(foregroundColor30);
|
||
patternFill32.Append(backgroundColor17);
|
||
|
||
fill32.Append(patternFill32);
|
||
|
||
Fill fill33 = new Fill();
|
||
|
||
PatternFill patternFill33 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor31 = new ForegroundColor() { Theme = (UInt32Value)9U, Tint = 0.39997558519241921D };
|
||
BackgroundColor backgroundColor18 = new BackgroundColor() { Indexed = (UInt32Value)65U };
|
||
|
||
patternFill33.Append(foregroundColor31);
|
||
patternFill33.Append(backgroundColor18);
|
||
|
||
fill33.Append(patternFill33);
|
||
|
||
Fill fill34 = new Fill();
|
||
|
||
PatternFill patternFill34 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor32 = new ForegroundColor() { Theme = (UInt32Value)0U };
|
||
BackgroundColor backgroundColor19 = new BackgroundColor() { Indexed = (UInt32Value)64U };
|
||
|
||
patternFill34.Append(foregroundColor32);
|
||
patternFill34.Append(backgroundColor19);
|
||
|
||
fill34.Append(patternFill34);
|
||
|
||
Fill fill35 = new Fill();
|
||
|
||
PatternFill patternFill35 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor33 = new ForegroundColor() { Rgb = "FFC0C0C0" };
|
||
BackgroundColor backgroundColor20 = new BackgroundColor() { Indexed = (UInt32Value)64U };
|
||
|
||
patternFill35.Append(foregroundColor33);
|
||
patternFill35.Append(backgroundColor20);
|
||
|
||
fill35.Append(patternFill35);
|
||
|
||
Fill fill36 = new Fill();
|
||
|
||
PatternFill patternFill36 = new PatternFill() { PatternType = PatternValues.Solid };
|
||
ForegroundColor foregroundColor34 = new ForegroundColor() { Rgb = "FF66FFFF" };
|
||
BackgroundColor backgroundColor21 = new BackgroundColor() { Indexed = (UInt32Value)64U };
|
||
|
||
patternFill36.Append(foregroundColor34);
|
||
patternFill36.Append(backgroundColor21);
|
||
|
||
fill36.Append(patternFill36);
|
||
|
||
fills1.Append(fill1);
|
||
fills1.Append(fill2);
|
||
fills1.Append(fill3);
|
||
fills1.Append(fill4);
|
||
fills1.Append(fill5);
|
||
fills1.Append(fill6);
|
||
fills1.Append(fill7);
|
||
fills1.Append(fill8);
|
||
fills1.Append(fill9);
|
||
fills1.Append(fill10);
|
||
fills1.Append(fill11);
|
||
fills1.Append(fill12);
|
||
fills1.Append(fill13);
|
||
fills1.Append(fill14);
|
||
fills1.Append(fill15);
|
||
fills1.Append(fill16);
|
||
fills1.Append(fill17);
|
||
fills1.Append(fill18);
|
||
fills1.Append(fill19);
|
||
fills1.Append(fill20);
|
||
fills1.Append(fill21);
|
||
fills1.Append(fill22);
|
||
fills1.Append(fill23);
|
||
fills1.Append(fill24);
|
||
fills1.Append(fill25);
|
||
fills1.Append(fill26);
|
||
fills1.Append(fill27);
|
||
fills1.Append(fill28);
|
||
fills1.Append(fill29);
|
||
fills1.Append(fill30);
|
||
fills1.Append(fill31);
|
||
fills1.Append(fill32);
|
||
fills1.Append(fill33);
|
||
fills1.Append(fill34);
|
||
fills1.Append(fill35);
|
||
fills1.Append(fill36);
|
||
|
||
Borders borders1 = new Borders() { Count = (UInt32Value)19U };
|
||
|
||
Border border1 = new Border();
|
||
LeftBorder leftBorder1 = new LeftBorder();
|
||
RightBorder rightBorder1 = new RightBorder();
|
||
TopBorder topBorder1 = new TopBorder();
|
||
BottomBorder bottomBorder1 = new BottomBorder();
|
||
DiagonalBorder diagonalBorder1 = new DiagonalBorder();
|
||
|
||
border1.Append(leftBorder1);
|
||
border1.Append(rightBorder1);
|
||
border1.Append(topBorder1);
|
||
border1.Append(bottomBorder1);
|
||
border1.Append(diagonalBorder1);
|
||
|
||
Border border2 = new Border();
|
||
LeftBorder leftBorder2 = new LeftBorder();
|
||
RightBorder rightBorder2 = new RightBorder();
|
||
TopBorder topBorder2 = new TopBorder();
|
||
|
||
BottomBorder bottomBorder2 = new BottomBorder() { Style = BorderStyleValues.Thick };
|
||
Color color29 = new Color() { Theme = (UInt32Value)4U };
|
||
|
||
bottomBorder2.Append(color29);
|
||
DiagonalBorder diagonalBorder2 = new DiagonalBorder();
|
||
|
||
border2.Append(leftBorder2);
|
||
border2.Append(rightBorder2);
|
||
border2.Append(topBorder2);
|
||
border2.Append(bottomBorder2);
|
||
border2.Append(diagonalBorder2);
|
||
|
||
Border border3 = new Border();
|
||
LeftBorder leftBorder3 = new LeftBorder();
|
||
RightBorder rightBorder3 = new RightBorder();
|
||
TopBorder topBorder3 = new TopBorder();
|
||
|
||
BottomBorder bottomBorder3 = new BottomBorder() { Style = BorderStyleValues.Thick };
|
||
Color color30 = new Color() { Theme = (UInt32Value)4U, Tint = 0.499984740745262D };
|
||
|
||
bottomBorder3.Append(color30);
|
||
DiagonalBorder diagonalBorder3 = new DiagonalBorder();
|
||
|
||
border3.Append(leftBorder3);
|
||
border3.Append(rightBorder3);
|
||
border3.Append(topBorder3);
|
||
border3.Append(bottomBorder3);
|
||
border3.Append(diagonalBorder3);
|
||
|
||
Border border4 = new Border();
|
||
LeftBorder leftBorder4 = new LeftBorder();
|
||
RightBorder rightBorder4 = new RightBorder();
|
||
TopBorder topBorder4 = new TopBorder();
|
||
|
||
BottomBorder bottomBorder4 = new BottomBorder() { Style = BorderStyleValues.Medium };
|
||
Color color31 = new Color() { Theme = (UInt32Value)4U, Tint = 0.39997558519241921D };
|
||
|
||
bottomBorder4.Append(color31);
|
||
DiagonalBorder diagonalBorder4 = new DiagonalBorder();
|
||
|
||
border4.Append(leftBorder4);
|
||
border4.Append(rightBorder4);
|
||
border4.Append(topBorder4);
|
||
border4.Append(bottomBorder4);
|
||
border4.Append(diagonalBorder4);
|
||
|
||
Border border5 = new Border();
|
||
|
||
LeftBorder leftBorder5 = new LeftBorder() { Style = BorderStyleValues.Thin };
|
||
Color color32 = new Color() { Rgb = "FF7F7F7F" };
|
||
|
||
leftBorder5.Append(color32);
|
||
|
||
RightBorder rightBorder5 = new RightBorder() { Style = BorderStyleValues.Thin };
|
||
Color color33 = new Color() { Rgb = "FF7F7F7F" };
|
||
|
||
rightBorder5.Append(color33);
|
||
|
||
TopBorder topBorder5 = new TopBorder() { Style = BorderStyleValues.Thin };
|
||
Color color34 = new Color() { Rgb = "FF7F7F7F" };
|
||
|
||
topBorder5.Append(color34);
|
||
|
||
BottomBorder bottomBorder5 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
||
Color color35 = new Color() { Rgb = "FF7F7F7F" };
|
||
|
||
bottomBorder5.Append(color35);
|
||
DiagonalBorder diagonalBorder5 = new DiagonalBorder();
|
||
|
||
border5.Append(leftBorder5);
|
||
border5.Append(rightBorder5);
|
||
border5.Append(topBorder5);
|
||
border5.Append(bottomBorder5);
|
||
border5.Append(diagonalBorder5);
|
||
|
||
Border border6 = new Border();
|
||
|
||
LeftBorder leftBorder6 = new LeftBorder() { Style = BorderStyleValues.Thin };
|
||
Color color36 = new Color() { Rgb = "FF3F3F3F" };
|
||
|
||
leftBorder6.Append(color36);
|
||
|
||
RightBorder rightBorder6 = new RightBorder() { Style = BorderStyleValues.Thin };
|
||
Color color37 = new Color() { Rgb = "FF3F3F3F" };
|
||
|
||
rightBorder6.Append(color37);
|
||
|
||
TopBorder topBorder6 = new TopBorder() { Style = BorderStyleValues.Thin };
|
||
Color color38 = new Color() { Rgb = "FF3F3F3F" };
|
||
|
||
topBorder6.Append(color38);
|
||
|
||
BottomBorder bottomBorder6 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
||
Color color39 = new Color() { Rgb = "FF3F3F3F" };
|
||
|
||
bottomBorder6.Append(color39);
|
||
DiagonalBorder diagonalBorder6 = new DiagonalBorder();
|
||
|
||
border6.Append(leftBorder6);
|
||
border6.Append(rightBorder6);
|
||
border6.Append(topBorder6);
|
||
border6.Append(bottomBorder6);
|
||
border6.Append(diagonalBorder6);
|
||
|
||
Border border7 = new Border();
|
||
LeftBorder leftBorder7 = new LeftBorder();
|
||
RightBorder rightBorder7 = new RightBorder();
|
||
TopBorder topBorder7 = new TopBorder();
|
||
|
||
BottomBorder bottomBorder7 = new BottomBorder() { Style = BorderStyleValues.Double };
|
||
Color color40 = new Color() { Rgb = "FFFF8001" };
|
||
|
||
bottomBorder7.Append(color40);
|
||
DiagonalBorder diagonalBorder7 = new DiagonalBorder();
|
||
|
||
border7.Append(leftBorder7);
|
||
border7.Append(rightBorder7);
|
||
border7.Append(topBorder7);
|
||
border7.Append(bottomBorder7);
|
||
border7.Append(diagonalBorder7);
|
||
|
||
Border border8 = new Border();
|
||
|
||
LeftBorder leftBorder8 = new LeftBorder() { Style = BorderStyleValues.Double };
|
||
Color color41 = new Color() { Rgb = "FF3F3F3F" };
|
||
|
||
leftBorder8.Append(color41);
|
||
|
||
RightBorder rightBorder8 = new RightBorder() { Style = BorderStyleValues.Double };
|
||
Color color42 = new Color() { Rgb = "FF3F3F3F" };
|
||
|
||
rightBorder8.Append(color42);
|
||
|
||
TopBorder topBorder8 = new TopBorder() { Style = BorderStyleValues.Double };
|
||
Color color43 = new Color() { Rgb = "FF3F3F3F" };
|
||
|
||
topBorder8.Append(color43);
|
||
|
||
BottomBorder bottomBorder8 = new BottomBorder() { Style = BorderStyleValues.Double };
|
||
Color color44 = new Color() { Rgb = "FF3F3F3F" };
|
||
|
||
bottomBorder8.Append(color44);
|
||
DiagonalBorder diagonalBorder8 = new DiagonalBorder();
|
||
|
||
border8.Append(leftBorder8);
|
||
border8.Append(rightBorder8);
|
||
border8.Append(topBorder8);
|
||
border8.Append(bottomBorder8);
|
||
border8.Append(diagonalBorder8);
|
||
|
||
Border border9 = new Border();
|
||
|
||
LeftBorder leftBorder9 = new LeftBorder() { Style = BorderStyleValues.Thin };
|
||
Color color45 = new Color() { Rgb = "FFB2B2B2" };
|
||
|
||
leftBorder9.Append(color45);
|
||
|
||
RightBorder rightBorder9 = new RightBorder() { Style = BorderStyleValues.Thin };
|
||
Color color46 = new Color() { Rgb = "FFB2B2B2" };
|
||
|
||
rightBorder9.Append(color46);
|
||
|
||
TopBorder topBorder9 = new TopBorder() { Style = BorderStyleValues.Thin };
|
||
Color color47 = new Color() { Rgb = "FFB2B2B2" };
|
||
|
||
topBorder9.Append(color47);
|
||
|
||
BottomBorder bottomBorder9 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
||
Color color48 = new Color() { Rgb = "FFB2B2B2" };
|
||
|
||
bottomBorder9.Append(color48);
|
||
DiagonalBorder diagonalBorder9 = new DiagonalBorder();
|
||
|
||
border9.Append(leftBorder9);
|
||
border9.Append(rightBorder9);
|
||
border9.Append(topBorder9);
|
||
border9.Append(bottomBorder9);
|
||
border9.Append(diagonalBorder9);
|
||
|
||
Border border10 = new Border();
|
||
LeftBorder leftBorder10 = new LeftBorder();
|
||
RightBorder rightBorder10 = new RightBorder();
|
||
|
||
TopBorder topBorder10 = new TopBorder() { Style = BorderStyleValues.Thin };
|
||
Color color49 = new Color() { Theme = (UInt32Value)4U };
|
||
|
||
topBorder10.Append(color49);
|
||
|
||
BottomBorder bottomBorder10 = new BottomBorder() { Style = BorderStyleValues.Double };
|
||
Color color50 = new Color() { Theme = (UInt32Value)4U };
|
||
|
||
bottomBorder10.Append(color50);
|
||
DiagonalBorder diagonalBorder10 = new DiagonalBorder();
|
||
|
||
border10.Append(leftBorder10);
|
||
border10.Append(rightBorder10);
|
||
border10.Append(topBorder10);
|
||
border10.Append(bottomBorder10);
|
||
border10.Append(diagonalBorder10);
|
||
|
||
Border border11 = new Border();
|
||
LeftBorder leftBorder11 = new LeftBorder();
|
||
RightBorder rightBorder11 = new RightBorder();
|
||
|
||
TopBorder topBorder11 = new TopBorder() { Style = BorderStyleValues.Thin };
|
||
Color color51 = new Color() { Indexed = (UInt32Value)64U };
|
||
|
||
topBorder11.Append(color51);
|
||
|
||
BottomBorder bottomBorder11 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
||
Color color52 = new Color() { Indexed = (UInt32Value)64U };
|
||
|
||
bottomBorder11.Append(color52);
|
||
DiagonalBorder diagonalBorder11 = new DiagonalBorder();
|
||
|
||
border11.Append(leftBorder11);
|
||
border11.Append(rightBorder11);
|
||
border11.Append(topBorder11);
|
||
border11.Append(bottomBorder11);
|
||
border11.Append(diagonalBorder11);
|
||
|
||
Border border12 = new Border();
|
||
|
||
LeftBorder leftBorder12 = new LeftBorder() { Style = BorderStyleValues.Medium };
|
||
Color color53 = new Color() { Indexed = (UInt32Value)64U };
|
||
|
||
leftBorder12.Append(color53);
|
||
RightBorder rightBorder12 = new RightBorder();
|
||
|
||
TopBorder topBorder12 = new TopBorder() { Style = BorderStyleValues.Medium };
|
||
Color color54 = new Color() { Indexed = (UInt32Value)64U };
|
||
|
||
topBorder12.Append(color54);
|
||
|
||
BottomBorder bottomBorder12 = new BottomBorder() { Style = BorderStyleValues.Medium };
|
||
Color color55 = new Color() { Indexed = (UInt32Value)64U };
|
||
|
||
bottomBorder12.Append(color55);
|
||
DiagonalBorder diagonalBorder12 = new DiagonalBorder();
|
||
|
||
border12.Append(leftBorder12);
|
||
border12.Append(rightBorder12);
|
||
border12.Append(topBorder12);
|
||
border12.Append(bottomBorder12);
|
||
border12.Append(diagonalBorder12);
|
||
|
||
Border border13 = new Border();
|
||
LeftBorder leftBorder13 = new LeftBorder();
|
||
RightBorder rightBorder13 = new RightBorder();
|
||
|
||
TopBorder topBorder13 = new TopBorder() { Style = BorderStyleValues.Medium };
|
||
Color color56 = new Color() { Indexed = (UInt32Value)64U };
|
||
|
||
topBorder13.Append(color56);
|
||
|
||
BottomBorder bottomBorder13 = new BottomBorder() { Style = BorderStyleValues.Medium };
|
||
Color color57 = new Color() { Indexed = (UInt32Value)64U };
|
||
|
||
bottomBorder13.Append(color57);
|
||
DiagonalBorder diagonalBorder13 = new DiagonalBorder();
|
||
|
||
border13.Append(leftBorder13);
|
||
border13.Append(rightBorder13);
|
||
border13.Append(topBorder13);
|
||
border13.Append(bottomBorder13);
|
||
border13.Append(diagonalBorder13);
|
||
|
||
Border border14 = new Border();
|
||
LeftBorder leftBorder14 = new LeftBorder();
|
||
|
||
RightBorder rightBorder14 = new RightBorder() { Style = BorderStyleValues.Medium };
|
||
Color color58 = new Color() { Indexed = (UInt32Value)64U };
|
||
|
||
rightBorder14.Append(color58);
|
||
|
||
TopBorder topBorder14 = new TopBorder() { Style = BorderStyleValues.Medium };
|
||
Color color59 = new Color() { Indexed = (UInt32Value)64U };
|
||
|
||
topBorder14.Append(color59);
|
||
|
||
BottomBorder bottomBorder14 = new BottomBorder() { Style = BorderStyleValues.Medium };
|
||
Color color60 = new Color() { Indexed = (UInt32Value)64U };
|
||
|
||
bottomBorder14.Append(color60);
|
||
DiagonalBorder diagonalBorder14 = new DiagonalBorder();
|
||
|
||
border14.Append(leftBorder14);
|
||
border14.Append(rightBorder14);
|
||
border14.Append(topBorder14);
|
||
border14.Append(bottomBorder14);
|
||
border14.Append(diagonalBorder14);
|
||
|
||
Border border15 = new Border();
|
||
|
||
LeftBorder leftBorder15 = new LeftBorder() { Style = BorderStyleValues.Thin };
|
||
Color color61 = new Color() { Auto = true };
|
||
|
||
leftBorder15.Append(color61);
|
||
RightBorder rightBorder15 = new RightBorder();
|
||
|
||
TopBorder topBorder15 = new TopBorder() { Style = BorderStyleValues.Thin };
|
||
Color color62 = new Color() { Auto = true };
|
||
|
||
topBorder15.Append(color62);
|
||
|
||
BottomBorder bottomBorder15 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
||
Color color63 = new Color() { Auto = true };
|
||
|
||
bottomBorder15.Append(color63);
|
||
DiagonalBorder diagonalBorder15 = new DiagonalBorder();
|
||
|
||
border15.Append(leftBorder15);
|
||
border15.Append(rightBorder15);
|
||
border15.Append(topBorder15);
|
||
border15.Append(bottomBorder15);
|
||
border15.Append(diagonalBorder15);
|
||
|
||
Border border16 = new Border();
|
||
LeftBorder leftBorder16 = new LeftBorder();
|
||
|
||
RightBorder rightBorder16 = new RightBorder() { Style = BorderStyleValues.Thin };
|
||
Color color64 = new Color() { Auto = true };
|
||
|
||
rightBorder16.Append(color64);
|
||
|
||
TopBorder topBorder16 = new TopBorder() { Style = BorderStyleValues.Thin };
|
||
Color color65 = new Color() { Auto = true };
|
||
|
||
topBorder16.Append(color65);
|
||
|
||
BottomBorder bottomBorder16 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
||
Color color66 = new Color() { Auto = true };
|
||
|
||
bottomBorder16.Append(color66);
|
||
DiagonalBorder diagonalBorder16 = new DiagonalBorder();
|
||
|
||
border16.Append(leftBorder16);
|
||
border16.Append(rightBorder16);
|
||
border16.Append(topBorder16);
|
||
border16.Append(bottomBorder16);
|
||
border16.Append(diagonalBorder16);
|
||
|
||
Border border17 = new Border();
|
||
LeftBorder leftBorder17 = new LeftBorder();
|
||
RightBorder rightBorder17 = new RightBorder();
|
||
TopBorder topBorder17 = new TopBorder();
|
||
|
||
BottomBorder bottomBorder17 = new BottomBorder() { Style = BorderStyleValues.Medium };
|
||
Color color67 = new Color() { Indexed = (UInt32Value)64U };
|
||
|
||
bottomBorder17.Append(color67);
|
||
DiagonalBorder diagonalBorder17 = new DiagonalBorder();
|
||
|
||
border17.Append(leftBorder17);
|
||
border17.Append(rightBorder17);
|
||
border17.Append(topBorder17);
|
||
border17.Append(bottomBorder17);
|
||
border17.Append(diagonalBorder17);
|
||
|
||
Border border18 = new Border();
|
||
LeftBorder leftBorder18 = new LeftBorder();
|
||
RightBorder rightBorder18 = new RightBorder();
|
||
TopBorder topBorder18 = new TopBorder();
|
||
|
||
BottomBorder bottomBorder18 = new BottomBorder() { Style = BorderStyleValues.Thick };
|
||
Color color68 = new Color() { Auto = true };
|
||
|
||
bottomBorder18.Append(color68);
|
||
DiagonalBorder diagonalBorder18 = new DiagonalBorder();
|
||
|
||
border18.Append(leftBorder18);
|
||
border18.Append(rightBorder18);
|
||
border18.Append(topBorder18);
|
||
border18.Append(bottomBorder18);
|
||
border18.Append(diagonalBorder18);
|
||
|
||
Border border19 = new Border();
|
||
LeftBorder leftBorder19 = new LeftBorder();
|
||
RightBorder rightBorder19 = new RightBorder();
|
||
|
||
TopBorder topBorder19 = new TopBorder() { Style = BorderStyleValues.Thick };
|
||
Color color69 = new Color() { Auto = true };
|
||
|
||
topBorder19.Append(color69);
|
||
|
||
BottomBorder bottomBorder19 = new BottomBorder() { Style = BorderStyleValues.Thick };
|
||
Color color70 = new Color() { Auto = true };
|
||
|
||
bottomBorder19.Append(color70);
|
||
DiagonalBorder diagonalBorder19 = new DiagonalBorder();
|
||
|
||
border19.Append(leftBorder19);
|
||
border19.Append(rightBorder19);
|
||
border19.Append(topBorder19);
|
||
border19.Append(bottomBorder19);
|
||
border19.Append(diagonalBorder19);
|
||
|
||
borders1.Append(border1);
|
||
borders1.Append(border2);
|
||
borders1.Append(border3);
|
||
borders1.Append(border4);
|
||
borders1.Append(border5);
|
||
borders1.Append(border6);
|
||
borders1.Append(border7);
|
||
borders1.Append(border8);
|
||
borders1.Append(border9);
|
||
borders1.Append(border10);
|
||
borders1.Append(border11);
|
||
borders1.Append(border12);
|
||
borders1.Append(border13);
|
||
borders1.Append(border14);
|
||
borders1.Append(border15);
|
||
borders1.Append(border16);
|
||
borders1.Append(border17);
|
||
borders1.Append(border18);
|
||
borders1.Append(border19);
|
||
|
||
CellStyleFormats cellStyleFormats1 = new CellStyleFormats() { Count = (UInt32Value)45U };
|
||
CellFormat cellFormat1 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U };
|
||
CellFormat cellFormat2 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyFill = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat3 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)4U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)1U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat4 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)5U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)2U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat5 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)6U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)3U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat6 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)6U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyFill = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat7 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)7U, FillId = (UInt32Value)2U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat8 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)8U, FillId = (UInt32Value)3U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat9 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)9U, FillId = (UInt32Value)4U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat10 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)10U, FillId = (UInt32Value)5U, BorderId = (UInt32Value)4U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat11 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)11U, FillId = (UInt32Value)6U, BorderId = (UInt32Value)5U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat12 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)12U, FillId = (UInt32Value)6U, BorderId = (UInt32Value)4U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat13 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)13U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)6U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat14 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)14U, FillId = (UInt32Value)7U, BorderId = (UInt32Value)7U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat15 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)15U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyFill = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat16 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)16U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyFill = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat17 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)9U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat18 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)9U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat19 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)10U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat20 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)11U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat21 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)12U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat22 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)13U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat23 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)14U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat24 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)15U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat25 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)16U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat26 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)17U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat27 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)18U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat28 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)19U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat29 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)20U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat30 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)21U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat31 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)22U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat32 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)23U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat33 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)24U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat34 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)25U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat35 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)26U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat36 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)27U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat37 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)28U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat38 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)29U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat39 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)30U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat40 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)31U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat41 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)32U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
||
|
||
CellFormat cellFormat42 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U };
|
||
Alignment alignment1 = new Alignment() { Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat42.Append(alignment1);
|
||
CellFormat cellFormat43 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U };
|
||
CellFormat cellFormat44 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)8U, BorderId = (UInt32Value)8U, ApplyNumberFormat = false, ApplyFont = false, ApplyAlignment = false, ApplyProtection = false };
|
||
CellFormat cellFormat45 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U };
|
||
|
||
cellStyleFormats1.Append(cellFormat1);
|
||
cellStyleFormats1.Append(cellFormat2);
|
||
cellStyleFormats1.Append(cellFormat3);
|
||
cellStyleFormats1.Append(cellFormat4);
|
||
cellStyleFormats1.Append(cellFormat5);
|
||
cellStyleFormats1.Append(cellFormat6);
|
||
cellStyleFormats1.Append(cellFormat7);
|
||
cellStyleFormats1.Append(cellFormat8);
|
||
cellStyleFormats1.Append(cellFormat9);
|
||
cellStyleFormats1.Append(cellFormat10);
|
||
cellStyleFormats1.Append(cellFormat11);
|
||
cellStyleFormats1.Append(cellFormat12);
|
||
cellStyleFormats1.Append(cellFormat13);
|
||
cellStyleFormats1.Append(cellFormat14);
|
||
cellStyleFormats1.Append(cellFormat15);
|
||
cellStyleFormats1.Append(cellFormat16);
|
||
cellStyleFormats1.Append(cellFormat17);
|
||
cellStyleFormats1.Append(cellFormat18);
|
||
cellStyleFormats1.Append(cellFormat19);
|
||
cellStyleFormats1.Append(cellFormat20);
|
||
cellStyleFormats1.Append(cellFormat21);
|
||
cellStyleFormats1.Append(cellFormat22);
|
||
cellStyleFormats1.Append(cellFormat23);
|
||
cellStyleFormats1.Append(cellFormat24);
|
||
cellStyleFormats1.Append(cellFormat25);
|
||
cellStyleFormats1.Append(cellFormat26);
|
||
cellStyleFormats1.Append(cellFormat27);
|
||
cellStyleFormats1.Append(cellFormat28);
|
||
cellStyleFormats1.Append(cellFormat29);
|
||
cellStyleFormats1.Append(cellFormat30);
|
||
cellStyleFormats1.Append(cellFormat31);
|
||
cellStyleFormats1.Append(cellFormat32);
|
||
cellStyleFormats1.Append(cellFormat33);
|
||
cellStyleFormats1.Append(cellFormat34);
|
||
cellStyleFormats1.Append(cellFormat35);
|
||
cellStyleFormats1.Append(cellFormat36);
|
||
cellStyleFormats1.Append(cellFormat37);
|
||
cellStyleFormats1.Append(cellFormat38);
|
||
cellStyleFormats1.Append(cellFormat39);
|
||
cellStyleFormats1.Append(cellFormat40);
|
||
cellStyleFormats1.Append(cellFormat41);
|
||
cellStyleFormats1.Append(cellFormat42);
|
||
cellStyleFormats1.Append(cellFormat43);
|
||
cellStyleFormats1.Append(cellFormat44);
|
||
cellStyleFormats1.Append(cellFormat45);
|
||
|
||
CellFormats cellFormats1 = new CellFormats() { Count = (UInt32Value)63U };
|
||
CellFormat cellFormat46 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U };
|
||
|
||
CellFormat cellFormat47 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)41U };
|
||
Alignment alignment2 = new Alignment() { Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat47.Append(alignment2);
|
||
CellFormat cellFormat48 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)42U };
|
||
|
||
CellFormat cellFormat49 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)20U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)41U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment3 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat49.Append(alignment3);
|
||
|
||
CellFormat cellFormat50 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)20U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)41U, ApplyFont = true, ApplyFill = true, ApplyBorder = true };
|
||
Alignment alignment4 = new Alignment() { Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat50.Append(alignment4);
|
||
CellFormat cellFormat51 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true };
|
||
CellFormat cellFormat52 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true };
|
||
CellFormat cellFormat53 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true };
|
||
CellFormat cellFormat54 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)44U, ApplyFont = true, ApplyFill = true };
|
||
CellFormat cellFormat55 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true };
|
||
|
||
CellFormat cellFormat56 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)20U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment5 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat56.Append(alignment5);
|
||
CellFormat cellFormat57 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
|
||
CellFormat cellFormat58 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)20U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment6 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat58.Append(alignment6);
|
||
|
||
CellFormat cellFormat59 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)28U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment7 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat59.Append(alignment7);
|
||
|
||
CellFormat cellFormat60 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)29U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment8 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat60.Append(alignment8);
|
||
|
||
CellFormat cellFormat61 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment9 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat61.Append(alignment9);
|
||
|
||
CellFormat cellFormat62 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)44U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
||
Alignment alignment10 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat62.Append(alignment10);
|
||
|
||
CellFormat cellFormat63 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)11U, FormatId = (UInt32Value)44U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment11 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat63.Append(alignment11);
|
||
|
||
CellFormat cellFormat64 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)44U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment12 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat64.Append(alignment12);
|
||
|
||
CellFormat cellFormat65 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)13U, FormatId = (UInt32Value)44U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment13 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat65.Append(alignment13);
|
||
|
||
CellFormat cellFormat66 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)41U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment14 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat66.Append(alignment14);
|
||
|
||
CellFormat cellFormat67 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)44U, ApplyFont = true, ApplyAlignment = true };
|
||
Alignment alignment15 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat67.Append(alignment15);
|
||
|
||
CellFormat cellFormat68 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)25U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)44U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
||
Alignment alignment16 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat68.Append(alignment16);
|
||
|
||
CellFormat cellFormat69 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)11U, FormatId = (UInt32Value)41U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment17 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat69.Append(alignment17);
|
||
|
||
CellFormat cellFormat70 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)13U, FormatId = (UInt32Value)44U, ApplyFont = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment18 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat70.Append(alignment18);
|
||
|
||
CellFormat cellFormat71 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)41U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment19 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat71.Append(alignment19);
|
||
|
||
CellFormat cellFormat72 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyAlignment = true };
|
||
Alignment alignment20 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat72.Append(alignment20);
|
||
|
||
CellFormat cellFormat73 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)14U, FormatId = (UInt32Value)41U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment21 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat73.Append(alignment21);
|
||
|
||
CellFormat cellFormat74 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)10U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment22 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center };
|
||
|
||
cellFormat74.Append(alignment22);
|
||
CellFormat cellFormat75 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)15U, FormatId = (UInt32Value)44U, ApplyBorder = true, ApplyAlignment = true };
|
||
|
||
CellFormat cellFormat76 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)14U, FormatId = (UInt32Value)41U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment23 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat76.Append(alignment23);
|
||
|
||
CellFormat cellFormat77 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)10U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment24 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center };
|
||
|
||
cellFormat77.Append(alignment24);
|
||
CellFormat cellFormat78 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)15U, FormatId = (UInt32Value)44U, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
|
||
CellFormat cellFormat79 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment25 = new Alignment() { Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat79.Append(alignment25);
|
||
|
||
CellFormat cellFormat80 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyAlignment = true };
|
||
Alignment alignment26 = new Alignment() { Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat80.Append(alignment26);
|
||
|
||
CellFormat cellFormat81 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment27 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat81.Append(alignment27);
|
||
|
||
CellFormat cellFormat82 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyAlignment = true };
|
||
Alignment alignment28 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat82.Append(alignment28);
|
||
|
||
CellFormat cellFormat83 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment29 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat83.Append(alignment29);
|
||
|
||
CellFormat cellFormat84 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyAlignment = true };
|
||
Alignment alignment30 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat84.Append(alignment30);
|
||
|
||
CellFormat cellFormat85 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)30U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
||
Alignment alignment31 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat85.Append(alignment31);
|
||
|
||
CellFormat cellFormat86 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
||
Alignment alignment32 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat86.Append(alignment32);
|
||
|
||
CellFormat cellFormat87 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
||
Alignment alignment33 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat87.Append(alignment33);
|
||
|
||
CellFormat cellFormat88 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
||
Alignment alignment34 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat88.Append(alignment34);
|
||
|
||
CellFormat cellFormat89 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)27U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
||
Alignment alignment35 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat89.Append(alignment35);
|
||
|
||
CellFormat cellFormat90 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)20U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)41U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment36 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat90.Append(alignment36);
|
||
CellFormat cellFormat91 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true };
|
||
|
||
CellFormat cellFormat92 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)23U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)11U, FormatId = (UInt32Value)41U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment37 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat92.Append(alignment37);
|
||
|
||
CellFormat cellFormat93 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)25U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment38 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center };
|
||
|
||
cellFormat93.Append(alignment38);
|
||
CellFormat cellFormat94 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)26U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
CellFormat cellFormat95 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
CellFormat cellFormat96 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)13U, FormatId = (UInt32Value)0U, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
|
||
CellFormat cellFormat97 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)23U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)11U, FormatId = (UInt32Value)41U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment39 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
||
|
||
cellFormat97.Append(alignment39);
|
||
|
||
CellFormat cellFormat98 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)25U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)42U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment40 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center };
|
||
|
||
cellFormat98.Append(alignment40);
|
||
CellFormat cellFormat99 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)26U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyBorder = true, ApplyAlignment = true };
|
||
CellFormat cellFormat100 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyBorder = true, ApplyAlignment = true };
|
||
CellFormat cellFormat101 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)13U, FormatId = (UInt32Value)0U, ApplyBorder = true, ApplyAlignment = true };
|
||
|
||
CellFormat cellFormat102 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)18U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment41 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat102.Append(alignment41);
|
||
|
||
CellFormat cellFormat103 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)17U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment42 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat103.Append(alignment42);
|
||
|
||
CellFormat cellFormat104 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)20U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)16U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment43 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat104.Append(alignment43);
|
||
|
||
CellFormat cellFormat105 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)20U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment44 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat105.Append(alignment44);
|
||
|
||
CellFormat cellFormat106 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)16U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment45 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat106.Append(alignment45);
|
||
|
||
CellFormat cellFormat107 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment46 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat107.Append(alignment46);
|
||
|
||
CellFormat cellFormat108 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)20U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)17U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
||
Alignment alignment47 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
||
|
||
cellFormat108.Append(alignment47);
|
||
|
||
cellFormats1.Append(cellFormat46);
|
||
cellFormats1.Append(cellFormat47);
|
||
cellFormats1.Append(cellFormat48);
|
||
cellFormats1.Append(cellFormat49);
|
||
cellFormats1.Append(cellFormat50);
|
||
cellFormats1.Append(cellFormat51);
|
||
cellFormats1.Append(cellFormat52);
|
||
cellFormats1.Append(cellFormat53);
|
||
cellFormats1.Append(cellFormat54);
|
||
cellFormats1.Append(cellFormat55);
|
||
cellFormats1.Append(cellFormat56);
|
||
cellFormats1.Append(cellFormat57);
|
||
cellFormats1.Append(cellFormat58);
|
||
cellFormats1.Append(cellFormat59);
|
||
cellFormats1.Append(cellFormat60);
|
||
cellFormats1.Append(cellFormat61);
|
||
cellFormats1.Append(cellFormat62);
|
||
cellFormats1.Append(cellFormat63);
|
||
cellFormats1.Append(cellFormat64);
|
||
cellFormats1.Append(cellFormat65);
|
||
cellFormats1.Append(cellFormat66);
|
||
cellFormats1.Append(cellFormat67);
|
||
cellFormats1.Append(cellFormat68);
|
||
cellFormats1.Append(cellFormat69);
|
||
cellFormats1.Append(cellFormat70);
|
||
cellFormats1.Append(cellFormat71);
|
||
cellFormats1.Append(cellFormat72);
|
||
cellFormats1.Append(cellFormat73);
|
||
cellFormats1.Append(cellFormat74);
|
||
cellFormats1.Append(cellFormat75);
|
||
cellFormats1.Append(cellFormat76);
|
||
cellFormats1.Append(cellFormat77);
|
||
cellFormats1.Append(cellFormat78);
|
||
cellFormats1.Append(cellFormat79);
|
||
cellFormats1.Append(cellFormat80);
|
||
cellFormats1.Append(cellFormat81);
|
||
cellFormats1.Append(cellFormat82);
|
||
cellFormats1.Append(cellFormat83);
|
||
cellFormats1.Append(cellFormat84);
|
||
cellFormats1.Append(cellFormat85);
|
||
cellFormats1.Append(cellFormat86);
|
||
cellFormats1.Append(cellFormat87);
|
||
cellFormats1.Append(cellFormat88);
|
||
cellFormats1.Append(cellFormat89);
|
||
cellFormats1.Append(cellFormat90);
|
||
cellFormats1.Append(cellFormat91);
|
||
cellFormats1.Append(cellFormat92);
|
||
cellFormats1.Append(cellFormat93);
|
||
cellFormats1.Append(cellFormat94);
|
||
cellFormats1.Append(cellFormat95);
|
||
cellFormats1.Append(cellFormat96);
|
||
cellFormats1.Append(cellFormat97);
|
||
cellFormats1.Append(cellFormat98);
|
||
cellFormats1.Append(cellFormat99);
|
||
cellFormats1.Append(cellFormat100);
|
||
cellFormats1.Append(cellFormat101);
|
||
cellFormats1.Append(cellFormat102);
|
||
cellFormats1.Append(cellFormat103);
|
||
cellFormats1.Append(cellFormat104);
|
||
cellFormats1.Append(cellFormat105);
|
||
cellFormats1.Append(cellFormat106);
|
||
cellFormats1.Append(cellFormat107);
|
||
cellFormats1.Append(cellFormat108);
|
||
|
||
CellStyles cellStyles1 = new CellStyles() { Count = (UInt32Value)45U };
|
||
CellStyle cellStyle1 = new CellStyle() { Name = "20% - Accent1", FormatId = (UInt32Value)18U, BuiltinId = (UInt32Value)30U, CustomBuiltin = true };
|
||
CellStyle cellStyle2 = new CellStyle() { Name = "20% - Accent2", FormatId = (UInt32Value)22U, BuiltinId = (UInt32Value)34U, CustomBuiltin = true };
|
||
CellStyle cellStyle3 = new CellStyle() { Name = "20% - Accent3", FormatId = (UInt32Value)26U, BuiltinId = (UInt32Value)38U, CustomBuiltin = true };
|
||
CellStyle cellStyle4 = new CellStyle() { Name = "20% - Accent4", FormatId = (UInt32Value)30U, BuiltinId = (UInt32Value)42U, CustomBuiltin = true };
|
||
CellStyle cellStyle5 = new CellStyle() { Name = "20% - Accent5", FormatId = (UInt32Value)34U, BuiltinId = (UInt32Value)46U, CustomBuiltin = true };
|
||
CellStyle cellStyle6 = new CellStyle() { Name = "20% - Accent6", FormatId = (UInt32Value)38U, BuiltinId = (UInt32Value)50U, CustomBuiltin = true };
|
||
CellStyle cellStyle7 = new CellStyle() { Name = "40% - Accent1", FormatId = (UInt32Value)19U, BuiltinId = (UInt32Value)31U, CustomBuiltin = true };
|
||
CellStyle cellStyle8 = new CellStyle() { Name = "40% - Accent2", FormatId = (UInt32Value)23U, BuiltinId = (UInt32Value)35U, CustomBuiltin = true };
|
||
CellStyle cellStyle9 = new CellStyle() { Name = "40% - Accent3", FormatId = (UInt32Value)27U, BuiltinId = (UInt32Value)39U, CustomBuiltin = true };
|
||
CellStyle cellStyle10 = new CellStyle() { Name = "40% - Accent4", FormatId = (UInt32Value)31U, BuiltinId = (UInt32Value)43U, CustomBuiltin = true };
|
||
CellStyle cellStyle11 = new CellStyle() { Name = "40% - Accent5", FormatId = (UInt32Value)35U, BuiltinId = (UInt32Value)47U, CustomBuiltin = true };
|
||
CellStyle cellStyle12 = new CellStyle() { Name = "40% - Accent6", FormatId = (UInt32Value)39U, BuiltinId = (UInt32Value)51U, CustomBuiltin = true };
|
||
CellStyle cellStyle13 = new CellStyle() { Name = "60% - Accent1", FormatId = (UInt32Value)20U, BuiltinId = (UInt32Value)32U, CustomBuiltin = true };
|
||
CellStyle cellStyle14 = new CellStyle() { Name = "60% - Accent2", FormatId = (UInt32Value)24U, BuiltinId = (UInt32Value)36U, CustomBuiltin = true };
|
||
CellStyle cellStyle15 = new CellStyle() { Name = "60% - Accent3", FormatId = (UInt32Value)28U, BuiltinId = (UInt32Value)40U, CustomBuiltin = true };
|
||
CellStyle cellStyle16 = new CellStyle() { Name = "60% - Accent4", FormatId = (UInt32Value)32U, BuiltinId = (UInt32Value)44U, CustomBuiltin = true };
|
||
CellStyle cellStyle17 = new CellStyle() { Name = "60% - Accent5", FormatId = (UInt32Value)36U, BuiltinId = (UInt32Value)48U, CustomBuiltin = true };
|
||
CellStyle cellStyle18 = new CellStyle() { Name = "60% - Accent6", FormatId = (UInt32Value)40U, BuiltinId = (UInt32Value)52U, CustomBuiltin = true };
|
||
CellStyle cellStyle19 = new CellStyle() { Name = "Accent1", FormatId = (UInt32Value)17U, BuiltinId = (UInt32Value)29U, CustomBuiltin = true };
|
||
CellStyle cellStyle20 = new CellStyle() { Name = "Accent2", FormatId = (UInt32Value)21U, BuiltinId = (UInt32Value)33U, CustomBuiltin = true };
|
||
CellStyle cellStyle21 = new CellStyle() { Name = "Accent3", FormatId = (UInt32Value)25U, BuiltinId = (UInt32Value)37U, CustomBuiltin = true };
|
||
CellStyle cellStyle22 = new CellStyle() { Name = "Accent4", FormatId = (UInt32Value)29U, BuiltinId = (UInt32Value)41U, CustomBuiltin = true };
|
||
CellStyle cellStyle23 = new CellStyle() { Name = "Accent5", FormatId = (UInt32Value)33U, BuiltinId = (UInt32Value)45U, CustomBuiltin = true };
|
||
CellStyle cellStyle24 = new CellStyle() { Name = "Accent6", FormatId = (UInt32Value)37U, BuiltinId = (UInt32Value)49U, CustomBuiltin = true };
|
||
CellStyle cellStyle25 = new CellStyle() { Name = "Bad", FormatId = (UInt32Value)7U, BuiltinId = (UInt32Value)27U, CustomBuiltin = true };
|
||
CellStyle cellStyle26 = new CellStyle() { Name = "Calculation", FormatId = (UInt32Value)11U, BuiltinId = (UInt32Value)22U, CustomBuiltin = true };
|
||
CellStyle cellStyle27 = new CellStyle() { Name = "Check Cell", FormatId = (UInt32Value)13U, BuiltinId = (UInt32Value)23U, CustomBuiltin = true };
|
||
CellStyle cellStyle28 = new CellStyle() { Name = "Explanatory Text", FormatId = (UInt32Value)15U, BuiltinId = (UInt32Value)53U, CustomBuiltin = true };
|
||
CellStyle cellStyle29 = new CellStyle() { Name = "Good", FormatId = (UInt32Value)6U, BuiltinId = (UInt32Value)26U, CustomBuiltin = true };
|
||
CellStyle cellStyle30 = new CellStyle() { Name = "Heading 1", FormatId = (UInt32Value)2U, BuiltinId = (UInt32Value)16U, CustomBuiltin = true };
|
||
CellStyle cellStyle31 = new CellStyle() { Name = "Heading 2", FormatId = (UInt32Value)3U, BuiltinId = (UInt32Value)17U, CustomBuiltin = true };
|
||
CellStyle cellStyle32 = new CellStyle() { Name = "Heading 3", FormatId = (UInt32Value)4U, BuiltinId = (UInt32Value)18U, CustomBuiltin = true };
|
||
CellStyle cellStyle33 = new CellStyle() { Name = "Heading 4", FormatId = (UInt32Value)5U, BuiltinId = (UInt32Value)19U, CustomBuiltin = true };
|
||
CellStyle cellStyle34 = new CellStyle() { Name = "Input", FormatId = (UInt32Value)9U, BuiltinId = (UInt32Value)20U, CustomBuiltin = true };
|
||
CellStyle cellStyle35 = new CellStyle() { Name = "Linked Cell", FormatId = (UInt32Value)12U, BuiltinId = (UInt32Value)24U, CustomBuiltin = true };
|
||
CellStyle cellStyle36 = new CellStyle() { Name = "Neutral", FormatId = (UInt32Value)8U, BuiltinId = (UInt32Value)28U, CustomBuiltin = true };
|
||
CellStyle cellStyle37 = new CellStyle() { Name = "Normal", FormatId = (UInt32Value)0U, BuiltinId = (UInt32Value)0U };
|
||
CellStyle cellStyle38 = new CellStyle() { Name = "Normal 2", FormatId = (UInt32Value)42U };
|
||
CellStyle cellStyle39 = new CellStyle() { Name = "Normal 3", FormatId = (UInt32Value)41U };
|
||
CellStyle cellStyle40 = new CellStyle() { Name = "Normal 5", FormatId = (UInt32Value)44U };
|
||
CellStyle cellStyle41 = new CellStyle() { Name = "Note 2", FormatId = (UInt32Value)43U };
|
||
CellStyle cellStyle42 = new CellStyle() { Name = "Output", FormatId = (UInt32Value)10U, BuiltinId = (UInt32Value)21U, CustomBuiltin = true };
|
||
CellStyle cellStyle43 = new CellStyle() { Name = "Title", FormatId = (UInt32Value)1U, BuiltinId = (UInt32Value)15U, CustomBuiltin = true };
|
||
CellStyle cellStyle44 = new CellStyle() { Name = "Total", FormatId = (UInt32Value)16U, BuiltinId = (UInt32Value)25U, CustomBuiltin = true };
|
||
CellStyle cellStyle45 = new CellStyle() { Name = "Warning Text", FormatId = (UInt32Value)14U, BuiltinId = (UInt32Value)11U, CustomBuiltin = true };
|
||
|
||
cellStyles1.Append(cellStyle1);
|
||
cellStyles1.Append(cellStyle2);
|
||
cellStyles1.Append(cellStyle3);
|
||
cellStyles1.Append(cellStyle4);
|
||
cellStyles1.Append(cellStyle5);
|
||
cellStyles1.Append(cellStyle6);
|
||
cellStyles1.Append(cellStyle7);
|
||
cellStyles1.Append(cellStyle8);
|
||
cellStyles1.Append(cellStyle9);
|
||
cellStyles1.Append(cellStyle10);
|
||
cellStyles1.Append(cellStyle11);
|
||
cellStyles1.Append(cellStyle12);
|
||
cellStyles1.Append(cellStyle13);
|
||
cellStyles1.Append(cellStyle14);
|
||
cellStyles1.Append(cellStyle15);
|
||
cellStyles1.Append(cellStyle16);
|
||
cellStyles1.Append(cellStyle17);
|
||
cellStyles1.Append(cellStyle18);
|
||
cellStyles1.Append(cellStyle19);
|
||
cellStyles1.Append(cellStyle20);
|
||
cellStyles1.Append(cellStyle21);
|
||
cellStyles1.Append(cellStyle22);
|
||
cellStyles1.Append(cellStyle23);
|
||
cellStyles1.Append(cellStyle24);
|
||
cellStyles1.Append(cellStyle25);
|
||
cellStyles1.Append(cellStyle26);
|
||
cellStyles1.Append(cellStyle27);
|
||
cellStyles1.Append(cellStyle28);
|
||
cellStyles1.Append(cellStyle29);
|
||
cellStyles1.Append(cellStyle30);
|
||
cellStyles1.Append(cellStyle31);
|
||
cellStyles1.Append(cellStyle32);
|
||
cellStyles1.Append(cellStyle33);
|
||
cellStyles1.Append(cellStyle34);
|
||
cellStyles1.Append(cellStyle35);
|
||
cellStyles1.Append(cellStyle36);
|
||
cellStyles1.Append(cellStyle37);
|
||
cellStyles1.Append(cellStyle38);
|
||
cellStyles1.Append(cellStyle39);
|
||
cellStyles1.Append(cellStyle40);
|
||
cellStyles1.Append(cellStyle41);
|
||
cellStyles1.Append(cellStyle42);
|
||
cellStyles1.Append(cellStyle43);
|
||
cellStyles1.Append(cellStyle44);
|
||
cellStyles1.Append(cellStyle45);
|
||
DifferentialFormats differentialFormats1 = new DifferentialFormats() { Count = (UInt32Value)0U };
|
||
TableStyles tableStyles1 = new TableStyles() { Count = (UInt32Value)0U, DefaultTableStyle = "TableStyleMedium9", DefaultPivotStyle = "PivotStyleLight16" };
|
||
|
||
Colors colors1 = new Colors();
|
||
|
||
MruColors mruColors1 = new MruColors();
|
||
Color color71 = new Color() { Rgb = "FF66FFFF" };
|
||
Color color72 = new Color() { Rgb = "FFC0C0C0" };
|
||
Color color73 = new Color() { Rgb = "FFEAEAEA" };
|
||
Color color74 = new Color() { Rgb = "FF00FFFF" };
|
||
Color color75 = new Color() { Rgb = "FF969696" };
|
||
|
||
mruColors1.Append(color71);
|
||
mruColors1.Append(color72);
|
||
mruColors1.Append(color73);
|
||
mruColors1.Append(color74);
|
||
mruColors1.Append(color75);
|
||
|
||
colors1.Append(mruColors1);
|
||
|
||
StylesheetExtensionList stylesheetExtensionList1 = new StylesheetExtensionList();
|
||
|
||
StylesheetExtension stylesheetExtension1 = new StylesheetExtension() { Uri = "{EB79DEF2-80B8-43e5-95BD-54CBDDF9020C}" };
|
||
stylesheetExtension1.AddNamespaceDeclaration("x14", "http://schemas.microsoft.com/office/spreadsheetml/2009/9/main");
|
||
X14.SlicerStyles slicerStyles1 = new X14.SlicerStyles() { DefaultSlicerStyle = "SlicerStyleLight1" };
|
||
|
||
stylesheetExtension1.Append(slicerStyles1);
|
||
|
||
StylesheetExtension stylesheetExtension2 = new StylesheetExtension() { Uri = "{9260A510-F301-46a8-8635-F512D64BE5F5}" };
|
||
stylesheetExtension2.AddNamespaceDeclaration("x15", "http://schemas.microsoft.com/office/spreadsheetml/2010/11/main");
|
||
|
||
OpenXmlUnknownElement openXmlUnknownElement2 = OpenXmlUnknownElement.CreateOpenXmlUnknownElement("<x15:timelineStyles defaultTimelineStyle=\"TimeSlicerStyleLight1\" xmlns:x15=\"http://schemas.microsoft.com/office/spreadsheetml/2010/11/main\" />");
|
||
|
||
stylesheetExtension2.Append(openXmlUnknownElement2);
|
||
|
||
stylesheetExtensionList1.Append(stylesheetExtension1);
|
||
stylesheetExtensionList1.Append(stylesheetExtension2);
|
||
|
||
stylesheet1.Append(fonts1);
|
||
stylesheet1.Append(fills1);
|
||
stylesheet1.Append(borders1);
|
||
stylesheet1.Append(cellStyleFormats1);
|
||
stylesheet1.Append(cellFormats1);
|
||
stylesheet1.Append(cellStyles1);
|
||
stylesheet1.Append(differentialFormats1);
|
||
stylesheet1.Append(tableStyles1);
|
||
stylesheet1.Append(colors1);
|
||
stylesheet1.Append(stylesheetExtensionList1);
|
||
|
||
workbookStylesPart1.Stylesheet = stylesheet1;
|
||
}
|
||
|
||
// Generates content of themePart1.
|
||
private void GenerateThemePart1Content(ThemePart themePart1)
|
||
{
|
||
A.Theme theme1 = new A.Theme() { Name = "Office Theme" };
|
||
theme1.AddNamespaceDeclaration("a", "http://schemas.openxmlformats.org/drawingml/2006/main");
|
||
|
||
A.ThemeElements themeElements1 = new A.ThemeElements();
|
||
|
||
A.ColorScheme colorScheme1 = new A.ColorScheme() { Name = "Office" };
|
||
|
||
A.Dark1Color dark1Color1 = new A.Dark1Color();
|
||
A.SystemColor systemColor1 = new A.SystemColor() { Val = A.SystemColorValues.WindowText, LastColor = "000000" };
|
||
|
||
dark1Color1.Append(systemColor1);
|
||
|
||
A.Light1Color light1Color1 = new A.Light1Color();
|
||
A.SystemColor systemColor2 = new A.SystemColor() { Val = A.SystemColorValues.Window, LastColor = "FFFFFF" };
|
||
|
||
light1Color1.Append(systemColor2);
|
||
|
||
A.Dark2Color dark2Color1 = new A.Dark2Color();
|
||
A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex() { Val = "1F497D" };
|
||
|
||
dark2Color1.Append(rgbColorModelHex7);
|
||
|
||
A.Light2Color light2Color1 = new A.Light2Color();
|
||
A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex() { Val = "EEECE1" };
|
||
|
||
light2Color1.Append(rgbColorModelHex8);
|
||
|
||
A.Accent1Color accent1Color1 = new A.Accent1Color();
|
||
A.RgbColorModelHex rgbColorModelHex9 = new A.RgbColorModelHex() { Val = "4F81BD" };
|
||
|
||
accent1Color1.Append(rgbColorModelHex9);
|
||
|
||
A.Accent2Color accent2Color1 = new A.Accent2Color();
|
||
A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex() { Val = "C0504D" };
|
||
|
||
accent2Color1.Append(rgbColorModelHex10);
|
||
|
||
A.Accent3Color accent3Color1 = new A.Accent3Color();
|
||
A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex() { Val = "9BBB59" };
|
||
|
||
accent3Color1.Append(rgbColorModelHex11);
|
||
|
||
A.Accent4Color accent4Color1 = new A.Accent4Color();
|
||
A.RgbColorModelHex rgbColorModelHex12 = new A.RgbColorModelHex() { Val = "8064A2" };
|
||
|
||
accent4Color1.Append(rgbColorModelHex12);
|
||
|
||
A.Accent5Color accent5Color1 = new A.Accent5Color();
|
||
A.RgbColorModelHex rgbColorModelHex13 = new A.RgbColorModelHex() { Val = "4BACC6" };
|
||
|
||
accent5Color1.Append(rgbColorModelHex13);
|
||
|
||
A.Accent6Color accent6Color1 = new A.Accent6Color();
|
||
A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex() { Val = "F79646" };
|
||
|
||
accent6Color1.Append(rgbColorModelHex14);
|
||
|
||
A.Hyperlink hyperlink1 = new A.Hyperlink();
|
||
A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex() { Val = "0000FF" };
|
||
|
||
hyperlink1.Append(rgbColorModelHex15);
|
||
|
||
A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
|
||
A.RgbColorModelHex rgbColorModelHex16 = new A.RgbColorModelHex() { Val = "800080" };
|
||
|
||
followedHyperlinkColor1.Append(rgbColorModelHex16);
|
||
|
||
colorScheme1.Append(dark1Color1);
|
||
colorScheme1.Append(light1Color1);
|
||
colorScheme1.Append(dark2Color1);
|
||
colorScheme1.Append(light2Color1);
|
||
colorScheme1.Append(accent1Color1);
|
||
colorScheme1.Append(accent2Color1);
|
||
colorScheme1.Append(accent3Color1);
|
||
colorScheme1.Append(accent4Color1);
|
||
colorScheme1.Append(accent5Color1);
|
||
colorScheme1.Append(accent6Color1);
|
||
colorScheme1.Append(hyperlink1);
|
||
colorScheme1.Append(followedHyperlinkColor1);
|
||
|
||
A.FontScheme fontScheme21 = new A.FontScheme() { Name = "Office" };
|
||
|
||
A.MajorFont majorFont1 = new A.MajorFont();
|
||
A.LatinFont latinFont4 = new A.LatinFont() { Typeface = "Cambria", Panose = "020F0302020204030204" };
|
||
A.EastAsianFont eastAsianFont4 = new A.EastAsianFont() { Typeface = "" };
|
||
A.ComplexScriptFont complexScriptFont1 = new A.ComplexScriptFont() { Typeface = "" };
|
||
A.SupplementalFont supplementalFont1 = new A.SupplementalFont() { Script = "Jpan", Typeface = "MS Pゴシック" };
|
||
A.SupplementalFont supplementalFont2 = new A.SupplementalFont() { Script = "Hang", Typeface = "맑은 고딕" };
|
||
A.SupplementalFont supplementalFont3 = new A.SupplementalFont() { Script = "Hans", Typeface = "宋体" };
|
||
A.SupplementalFont supplementalFont4 = new A.SupplementalFont() { Script = "Hant", Typeface = "新細明體" };
|
||
A.SupplementalFont supplementalFont5 = new A.SupplementalFont() { Script = "Arab", Typeface = "Times New Roman" };
|
||
A.SupplementalFont supplementalFont6 = new A.SupplementalFont() { Script = "Hebr", Typeface = "Times New Roman" };
|
||
A.SupplementalFont supplementalFont7 = new A.SupplementalFont() { Script = "Thai", Typeface = "Tahoma" };
|
||
A.SupplementalFont supplementalFont8 = new A.SupplementalFont() { Script = "Ethi", Typeface = "Nyala" };
|
||
A.SupplementalFont supplementalFont9 = new A.SupplementalFont() { Script = "Beng", Typeface = "Vrinda" };
|
||
A.SupplementalFont supplementalFont10 = new A.SupplementalFont() { Script = "Gujr", Typeface = "Shruti" };
|
||
A.SupplementalFont supplementalFont11 = new A.SupplementalFont() { Script = "Khmr", Typeface = "MoolBoran" };
|
||
A.SupplementalFont supplementalFont12 = new A.SupplementalFont() { Script = "Knda", Typeface = "Tunga" };
|
||
A.SupplementalFont supplementalFont13 = new A.SupplementalFont() { Script = "Guru", Typeface = "Raavi" };
|
||
A.SupplementalFont supplementalFont14 = new A.SupplementalFont() { Script = "Cans", Typeface = "Euphemia" };
|
||
A.SupplementalFont supplementalFont15 = new A.SupplementalFont() { Script = "Cher", Typeface = "Plantagenet Cherokee" };
|
||
A.SupplementalFont supplementalFont16 = new A.SupplementalFont() { Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
|
||
A.SupplementalFont supplementalFont17 = new A.SupplementalFont() { Script = "Tibt", Typeface = "Microsoft Himalaya" };
|
||
A.SupplementalFont supplementalFont18 = new A.SupplementalFont() { Script = "Thaa", Typeface = "MV Boli" };
|
||
A.SupplementalFont supplementalFont19 = new A.SupplementalFont() { Script = "Deva", Typeface = "Mangal" };
|
||
A.SupplementalFont supplementalFont20 = new A.SupplementalFont() { Script = "Telu", Typeface = "Gautami" };
|
||
A.SupplementalFont supplementalFont21 = new A.SupplementalFont() { Script = "Taml", Typeface = "Latha" };
|
||
A.SupplementalFont supplementalFont22 = new A.SupplementalFont() { Script = "Syrc", Typeface = "Estrangelo Edessa" };
|
||
A.SupplementalFont supplementalFont23 = new A.SupplementalFont() { Script = "Orya", Typeface = "Kalinga" };
|
||
A.SupplementalFont supplementalFont24 = new A.SupplementalFont() { Script = "Mlym", Typeface = "Kartika" };
|
||
A.SupplementalFont supplementalFont25 = new A.SupplementalFont() { Script = "Laoo", Typeface = "DokChampa" };
|
||
A.SupplementalFont supplementalFont26 = new A.SupplementalFont() { Script = "Sinh", Typeface = "Iskoola Pota" };
|
||
A.SupplementalFont supplementalFont27 = new A.SupplementalFont() { Script = "Mong", Typeface = "Mongolian Baiti" };
|
||
A.SupplementalFont supplementalFont28 = new A.SupplementalFont() { Script = "Viet", Typeface = "Times New Roman" };
|
||
A.SupplementalFont supplementalFont29 = new A.SupplementalFont() { Script = "Uigh", Typeface = "Microsoft Uighur" };
|
||
A.SupplementalFont supplementalFont30 = new A.SupplementalFont() { Script = "Geor", Typeface = "Sylfaen" };
|
||
|
||
majorFont1.Append(latinFont4);
|
||
majorFont1.Append(eastAsianFont4);
|
||
majorFont1.Append(complexScriptFont1);
|
||
majorFont1.Append(supplementalFont1);
|
||
majorFont1.Append(supplementalFont2);
|
||
majorFont1.Append(supplementalFont3);
|
||
majorFont1.Append(supplementalFont4);
|
||
majorFont1.Append(supplementalFont5);
|
||
majorFont1.Append(supplementalFont6);
|
||
majorFont1.Append(supplementalFont7);
|
||
majorFont1.Append(supplementalFont8);
|
||
majorFont1.Append(supplementalFont9);
|
||
majorFont1.Append(supplementalFont10);
|
||
majorFont1.Append(supplementalFont11);
|
||
majorFont1.Append(supplementalFont12);
|
||
majorFont1.Append(supplementalFont13);
|
||
majorFont1.Append(supplementalFont14);
|
||
majorFont1.Append(supplementalFont15);
|
||
majorFont1.Append(supplementalFont16);
|
||
majorFont1.Append(supplementalFont17);
|
||
majorFont1.Append(supplementalFont18);
|
||
majorFont1.Append(supplementalFont19);
|
||
majorFont1.Append(supplementalFont20);
|
||
majorFont1.Append(supplementalFont21);
|
||
majorFont1.Append(supplementalFont22);
|
||
majorFont1.Append(supplementalFont23);
|
||
majorFont1.Append(supplementalFont24);
|
||
majorFont1.Append(supplementalFont25);
|
||
majorFont1.Append(supplementalFont26);
|
||
majorFont1.Append(supplementalFont27);
|
||
majorFont1.Append(supplementalFont28);
|
||
majorFont1.Append(supplementalFont29);
|
||
majorFont1.Append(supplementalFont30);
|
||
|
||
A.MinorFont minorFont1 = new A.MinorFont();
|
||
A.LatinFont latinFont5 = new A.LatinFont() { Typeface = "Calibri", Panose = "020F0502020204030204" };
|
||
A.EastAsianFont eastAsianFont5 = new A.EastAsianFont() { Typeface = "" };
|
||
A.ComplexScriptFont complexScriptFont2 = new A.ComplexScriptFont() { Typeface = "" };
|
||
A.SupplementalFont supplementalFont31 = new A.SupplementalFont() { Script = "Jpan", Typeface = "MS Pゴシック" };
|
||
A.SupplementalFont supplementalFont32 = new A.SupplementalFont() { Script = "Hang", Typeface = "맑은 고딕" };
|
||
A.SupplementalFont supplementalFont33 = new A.SupplementalFont() { Script = "Hans", Typeface = "宋体" };
|
||
A.SupplementalFont supplementalFont34 = new A.SupplementalFont() { Script = "Hant", Typeface = "新細明體" };
|
||
A.SupplementalFont supplementalFont35 = new A.SupplementalFont() { Script = "Arab", Typeface = "Arial" };
|
||
A.SupplementalFont supplementalFont36 = new A.SupplementalFont() { Script = "Hebr", Typeface = "Arial" };
|
||
A.SupplementalFont supplementalFont37 = new A.SupplementalFont() { Script = "Thai", Typeface = "Tahoma" };
|
||
A.SupplementalFont supplementalFont38 = new A.SupplementalFont() { Script = "Ethi", Typeface = "Nyala" };
|
||
A.SupplementalFont supplementalFont39 = new A.SupplementalFont() { Script = "Beng", Typeface = "Vrinda" };
|
||
A.SupplementalFont supplementalFont40 = new A.SupplementalFont() { Script = "Gujr", Typeface = "Shruti" };
|
||
A.SupplementalFont supplementalFont41 = new A.SupplementalFont() { Script = "Khmr", Typeface = "DaunPenh" };
|
||
A.SupplementalFont supplementalFont42 = new A.SupplementalFont() { Script = "Knda", Typeface = "Tunga" };
|
||
A.SupplementalFont supplementalFont43 = new A.SupplementalFont() { Script = "Guru", Typeface = "Raavi" };
|
||
A.SupplementalFont supplementalFont44 = new A.SupplementalFont() { Script = "Cans", Typeface = "Euphemia" };
|
||
A.SupplementalFont supplementalFont45 = new A.SupplementalFont() { Script = "Cher", Typeface = "Plantagenet Cherokee" };
|
||
A.SupplementalFont supplementalFont46 = new A.SupplementalFont() { Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
|
||
A.SupplementalFont supplementalFont47 = new A.SupplementalFont() { Script = "Tibt", Typeface = "Microsoft Himalaya" };
|
||
A.SupplementalFont supplementalFont48 = new A.SupplementalFont() { Script = "Thaa", Typeface = "MV Boli" };
|
||
A.SupplementalFont supplementalFont49 = new A.SupplementalFont() { Script = "Deva", Typeface = "Mangal" };
|
||
A.SupplementalFont supplementalFont50 = new A.SupplementalFont() { Script = "Telu", Typeface = "Gautami" };
|
||
A.SupplementalFont supplementalFont51 = new A.SupplementalFont() { Script = "Taml", Typeface = "Latha" };
|
||
A.SupplementalFont supplementalFont52 = new A.SupplementalFont() { Script = "Syrc", Typeface = "Estrangelo Edessa" };
|
||
A.SupplementalFont supplementalFont53 = new A.SupplementalFont() { Script = "Orya", Typeface = "Kalinga" };
|
||
A.SupplementalFont supplementalFont54 = new A.SupplementalFont() { Script = "Mlym", Typeface = "Kartika" };
|
||
A.SupplementalFont supplementalFont55 = new A.SupplementalFont() { Script = "Laoo", Typeface = "DokChampa" };
|
||
A.SupplementalFont supplementalFont56 = new A.SupplementalFont() { Script = "Sinh", Typeface = "Iskoola Pota" };
|
||
A.SupplementalFont supplementalFont57 = new A.SupplementalFont() { Script = "Mong", Typeface = "Mongolian Baiti" };
|
||
A.SupplementalFont supplementalFont58 = new A.SupplementalFont() { Script = "Viet", Typeface = "Arial" };
|
||
A.SupplementalFont supplementalFont59 = new A.SupplementalFont() { Script = "Uigh", Typeface = "Microsoft Uighur" };
|
||
A.SupplementalFont supplementalFont60 = new A.SupplementalFont() { Script = "Geor", Typeface = "Sylfaen" };
|
||
|
||
minorFont1.Append(latinFont5);
|
||
minorFont1.Append(eastAsianFont5);
|
||
minorFont1.Append(complexScriptFont2);
|
||
minorFont1.Append(supplementalFont31);
|
||
minorFont1.Append(supplementalFont32);
|
||
minorFont1.Append(supplementalFont33);
|
||
minorFont1.Append(supplementalFont34);
|
||
minorFont1.Append(supplementalFont35);
|
||
minorFont1.Append(supplementalFont36);
|
||
minorFont1.Append(supplementalFont37);
|
||
minorFont1.Append(supplementalFont38);
|
||
minorFont1.Append(supplementalFont39);
|
||
minorFont1.Append(supplementalFont40);
|
||
minorFont1.Append(supplementalFont41);
|
||
minorFont1.Append(supplementalFont42);
|
||
minorFont1.Append(supplementalFont43);
|
||
minorFont1.Append(supplementalFont44);
|
||
minorFont1.Append(supplementalFont45);
|
||
minorFont1.Append(supplementalFont46);
|
||
minorFont1.Append(supplementalFont47);
|
||
minorFont1.Append(supplementalFont48);
|
||
minorFont1.Append(supplementalFont49);
|
||
minorFont1.Append(supplementalFont50);
|
||
minorFont1.Append(supplementalFont51);
|
||
minorFont1.Append(supplementalFont52);
|
||
minorFont1.Append(supplementalFont53);
|
||
minorFont1.Append(supplementalFont54);
|
||
minorFont1.Append(supplementalFont55);
|
||
minorFont1.Append(supplementalFont56);
|
||
minorFont1.Append(supplementalFont57);
|
||
minorFont1.Append(supplementalFont58);
|
||
minorFont1.Append(supplementalFont59);
|
||
minorFont1.Append(supplementalFont60);
|
||
|
||
fontScheme21.Append(majorFont1);
|
||
fontScheme21.Append(minorFont1);
|
||
|
||
A.FormatScheme formatScheme1 = new A.FormatScheme() { Name = "Office" };
|
||
|
||
A.FillStyleList fillStyleList1 = new A.FillStyleList();
|
||
|
||
A.SolidFill solidFill7 = new A.SolidFill();
|
||
A.SchemeColor schemeColor1 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
|
||
solidFill7.Append(schemeColor1);
|
||
|
||
A.GradientFill gradientFill1 = new A.GradientFill() { RotateWithShape = true };
|
||
|
||
A.GradientStopList gradientStopList1 = new A.GradientStopList();
|
||
|
||
A.GradientStop gradientStop1 = new A.GradientStop() { Position = 0 };
|
||
|
||
A.SchemeColor schemeColor2 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Tint tint1 = new A.Tint() { Val = 50000 };
|
||
A.SaturationModulation saturationModulation1 = new A.SaturationModulation() { Val = 300000 };
|
||
|
||
schemeColor2.Append(tint1);
|
||
schemeColor2.Append(saturationModulation1);
|
||
|
||
gradientStop1.Append(schemeColor2);
|
||
|
||
A.GradientStop gradientStop2 = new A.GradientStop() { Position = 35000 };
|
||
|
||
A.SchemeColor schemeColor3 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Tint tint2 = new A.Tint() { Val = 37000 };
|
||
A.SaturationModulation saturationModulation2 = new A.SaturationModulation() { Val = 300000 };
|
||
|
||
schemeColor3.Append(tint2);
|
||
schemeColor3.Append(saturationModulation2);
|
||
|
||
gradientStop2.Append(schemeColor3);
|
||
|
||
A.GradientStop gradientStop3 = new A.GradientStop() { Position = 100000 };
|
||
|
||
A.SchemeColor schemeColor4 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Tint tint3 = new A.Tint() { Val = 15000 };
|
||
A.SaturationModulation saturationModulation3 = new A.SaturationModulation() { Val = 350000 };
|
||
|
||
schemeColor4.Append(tint3);
|
||
schemeColor4.Append(saturationModulation3);
|
||
|
||
gradientStop3.Append(schemeColor4);
|
||
|
||
gradientStopList1.Append(gradientStop1);
|
||
gradientStopList1.Append(gradientStop2);
|
||
gradientStopList1.Append(gradientStop3);
|
||
A.LinearGradientFill linearGradientFill1 = new A.LinearGradientFill() { Angle = 16200000, Scaled = true };
|
||
|
||
gradientFill1.Append(gradientStopList1);
|
||
gradientFill1.Append(linearGradientFill1);
|
||
|
||
A.GradientFill gradientFill2 = new A.GradientFill() { RotateWithShape = true };
|
||
|
||
A.GradientStopList gradientStopList2 = new A.GradientStopList();
|
||
|
||
A.GradientStop gradientStop4 = new A.GradientStop() { Position = 0 };
|
||
|
||
A.SchemeColor schemeColor5 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Shade shade1 = new A.Shade() { Val = 51000 };
|
||
A.SaturationModulation saturationModulation4 = new A.SaturationModulation() { Val = 130000 };
|
||
|
||
schemeColor5.Append(shade1);
|
||
schemeColor5.Append(saturationModulation4);
|
||
|
||
gradientStop4.Append(schemeColor5);
|
||
|
||
A.GradientStop gradientStop5 = new A.GradientStop() { Position = 80000 };
|
||
|
||
A.SchemeColor schemeColor6 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Shade shade2 = new A.Shade() { Val = 93000 };
|
||
A.SaturationModulation saturationModulation5 = new A.SaturationModulation() { Val = 130000 };
|
||
|
||
schemeColor6.Append(shade2);
|
||
schemeColor6.Append(saturationModulation5);
|
||
|
||
gradientStop5.Append(schemeColor6);
|
||
|
||
A.GradientStop gradientStop6 = new A.GradientStop() { Position = 100000 };
|
||
|
||
A.SchemeColor schemeColor7 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Shade shade3 = new A.Shade() { Val = 94000 };
|
||
A.SaturationModulation saturationModulation6 = new A.SaturationModulation() { Val = 135000 };
|
||
|
||
schemeColor7.Append(shade3);
|
||
schemeColor7.Append(saturationModulation6);
|
||
|
||
gradientStop6.Append(schemeColor7);
|
||
|
||
gradientStopList2.Append(gradientStop4);
|
||
gradientStopList2.Append(gradientStop5);
|
||
gradientStopList2.Append(gradientStop6);
|
||
A.LinearGradientFill linearGradientFill2 = new A.LinearGradientFill() { Angle = 16200000, Scaled = false };
|
||
|
||
gradientFill2.Append(gradientStopList2);
|
||
gradientFill2.Append(linearGradientFill2);
|
||
|
||
fillStyleList1.Append(solidFill7);
|
||
fillStyleList1.Append(gradientFill1);
|
||
fillStyleList1.Append(gradientFill2);
|
||
|
||
A.LineStyleList lineStyleList1 = new A.LineStyleList();
|
||
|
||
A.Outline outline15 = new A.Outline() { Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };
|
||
|
||
A.SolidFill solidFill8 = new A.SolidFill();
|
||
|
||
A.SchemeColor schemeColor8 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Shade shade4 = new A.Shade() { Val = 95000 };
|
||
A.SaturationModulation saturationModulation7 = new A.SaturationModulation() { Val = 105000 };
|
||
|
||
schemeColor8.Append(shade4);
|
||
schemeColor8.Append(saturationModulation7);
|
||
|
||
solidFill8.Append(schemeColor8);
|
||
A.PresetDash presetDash1 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
|
||
|
||
outline15.Append(solidFill8);
|
||
outline15.Append(presetDash1);
|
||
|
||
A.Outline outline16 = new A.Outline() { Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };
|
||
|
||
A.SolidFill solidFill9 = new A.SolidFill();
|
||
A.SchemeColor schemeColor9 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
|
||
solidFill9.Append(schemeColor9);
|
||
A.PresetDash presetDash2 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
|
||
|
||
outline16.Append(solidFill9);
|
||
outline16.Append(presetDash2);
|
||
|
||
A.Outline outline17 = new A.Outline() { Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };
|
||
|
||
A.SolidFill solidFill10 = new A.SolidFill();
|
||
A.SchemeColor schemeColor10 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
|
||
solidFill10.Append(schemeColor10);
|
||
A.PresetDash presetDash3 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
|
||
|
||
outline17.Append(solidFill10);
|
||
outline17.Append(presetDash3);
|
||
|
||
lineStyleList1.Append(outline15);
|
||
lineStyleList1.Append(outline16);
|
||
lineStyleList1.Append(outline17);
|
||
|
||
A.EffectStyleList effectStyleList1 = new A.EffectStyleList();
|
||
|
||
A.EffectStyle effectStyle1 = new A.EffectStyle();
|
||
|
||
A.EffectList effectList1 = new A.EffectList();
|
||
|
||
A.OuterShadow outerShadow1 = new A.OuterShadow() { BlurRadius = 40000L, Distance = 20000L, Direction = 5400000, RotateWithShape = false };
|
||
|
||
A.RgbColorModelHex rgbColorModelHex17 = new A.RgbColorModelHex() { Val = "000000" };
|
||
A.Alpha alpha1 = new A.Alpha() { Val = 38000 };
|
||
|
||
rgbColorModelHex17.Append(alpha1);
|
||
|
||
outerShadow1.Append(rgbColorModelHex17);
|
||
|
||
effectList1.Append(outerShadow1);
|
||
|
||
effectStyle1.Append(effectList1);
|
||
|
||
A.EffectStyle effectStyle2 = new A.EffectStyle();
|
||
|
||
A.EffectList effectList2 = new A.EffectList();
|
||
|
||
A.OuterShadow outerShadow2 = new A.OuterShadow() { BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };
|
||
|
||
A.RgbColorModelHex rgbColorModelHex18 = new A.RgbColorModelHex() { Val = "000000" };
|
||
A.Alpha alpha2 = new A.Alpha() { Val = 35000 };
|
||
|
||
rgbColorModelHex18.Append(alpha2);
|
||
|
||
outerShadow2.Append(rgbColorModelHex18);
|
||
|
||
effectList2.Append(outerShadow2);
|
||
|
||
effectStyle2.Append(effectList2);
|
||
|
||
A.EffectStyle effectStyle3 = new A.EffectStyle();
|
||
|
||
A.EffectList effectList3 = new A.EffectList();
|
||
|
||
A.OuterShadow outerShadow3 = new A.OuterShadow() { BlurRadius = 40000L, Distance = 23000L, Direction = 5400000, RotateWithShape = false };
|
||
|
||
A.RgbColorModelHex rgbColorModelHex19 = new A.RgbColorModelHex() { Val = "000000" };
|
||
A.Alpha alpha3 = new A.Alpha() { Val = 35000 };
|
||
|
||
rgbColorModelHex19.Append(alpha3);
|
||
|
||
outerShadow3.Append(rgbColorModelHex19);
|
||
|
||
effectList3.Append(outerShadow3);
|
||
|
||
A.Scene3DType scene3DType1 = new A.Scene3DType();
|
||
|
||
A.Camera camera1 = new A.Camera() { Preset = A.PresetCameraValues.OrthographicFront };
|
||
A.Rotation rotation1 = new A.Rotation() { Latitude = 0, Longitude = 0, Revolution = 0 };
|
||
|
||
camera1.Append(rotation1);
|
||
|
||
A.LightRig lightRig1 = new A.LightRig() { Rig = A.LightRigValues.ThreePoints, Direction = A.LightRigDirectionValues.Top };
|
||
A.Rotation rotation2 = new A.Rotation() { Latitude = 0, Longitude = 0, Revolution = 1200000 };
|
||
|
||
lightRig1.Append(rotation2);
|
||
|
||
scene3DType1.Append(camera1);
|
||
scene3DType1.Append(lightRig1);
|
||
|
||
A.Shape3DType shape3DType1 = new A.Shape3DType();
|
||
A.BevelTop bevelTop1 = new A.BevelTop() { Width = 63500L, Height = 25400L };
|
||
|
||
shape3DType1.Append(bevelTop1);
|
||
|
||
effectStyle3.Append(effectList3);
|
||
effectStyle3.Append(scene3DType1);
|
||
effectStyle3.Append(shape3DType1);
|
||
|
||
effectStyleList1.Append(effectStyle1);
|
||
effectStyleList1.Append(effectStyle2);
|
||
effectStyleList1.Append(effectStyle3);
|
||
|
||
A.BackgroundFillStyleList backgroundFillStyleList1 = new A.BackgroundFillStyleList();
|
||
|
||
A.SolidFill solidFill11 = new A.SolidFill();
|
||
A.SchemeColor schemeColor11 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
|
||
solidFill11.Append(schemeColor11);
|
||
|
||
A.GradientFill gradientFill3 = new A.GradientFill() { RotateWithShape = true };
|
||
|
||
A.GradientStopList gradientStopList3 = new A.GradientStopList();
|
||
|
||
A.GradientStop gradientStop7 = new A.GradientStop() { Position = 0 };
|
||
|
||
A.SchemeColor schemeColor12 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Tint tint4 = new A.Tint() { Val = 40000 };
|
||
A.SaturationModulation saturationModulation8 = new A.SaturationModulation() { Val = 350000 };
|
||
|
||
schemeColor12.Append(tint4);
|
||
schemeColor12.Append(saturationModulation8);
|
||
|
||
gradientStop7.Append(schemeColor12);
|
||
|
||
A.GradientStop gradientStop8 = new A.GradientStop() { Position = 40000 };
|
||
|
||
A.SchemeColor schemeColor13 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Tint tint5 = new A.Tint() { Val = 45000 };
|
||
A.Shade shade5 = new A.Shade() { Val = 99000 };
|
||
A.SaturationModulation saturationModulation9 = new A.SaturationModulation() { Val = 350000 };
|
||
|
||
schemeColor13.Append(tint5);
|
||
schemeColor13.Append(shade5);
|
||
schemeColor13.Append(saturationModulation9);
|
||
|
||
gradientStop8.Append(schemeColor13);
|
||
|
||
A.GradientStop gradientStop9 = new A.GradientStop() { Position = 100000 };
|
||
|
||
A.SchemeColor schemeColor14 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Shade shade6 = new A.Shade() { Val = 20000 };
|
||
A.SaturationModulation saturationModulation10 = new A.SaturationModulation() { Val = 255000 };
|
||
|
||
schemeColor14.Append(shade6);
|
||
schemeColor14.Append(saturationModulation10);
|
||
|
||
gradientStop9.Append(schemeColor14);
|
||
|
||
gradientStopList3.Append(gradientStop7);
|
||
gradientStopList3.Append(gradientStop8);
|
||
gradientStopList3.Append(gradientStop9);
|
||
|
||
A.PathGradientFill pathGradientFill1 = new A.PathGradientFill() { Path = A.PathShadeValues.Circle };
|
||
A.FillToRectangle fillToRectangle1 = new A.FillToRectangle() { Left = 50000, Top = -80000, Right = 50000, Bottom = 180000 };
|
||
|
||
pathGradientFill1.Append(fillToRectangle1);
|
||
|
||
gradientFill3.Append(gradientStopList3);
|
||
gradientFill3.Append(pathGradientFill1);
|
||
|
||
A.GradientFill gradientFill4 = new A.GradientFill() { RotateWithShape = true };
|
||
|
||
A.GradientStopList gradientStopList4 = new A.GradientStopList();
|
||
|
||
A.GradientStop gradientStop10 = new A.GradientStop() { Position = 0 };
|
||
|
||
A.SchemeColor schemeColor15 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Tint tint6 = new A.Tint() { Val = 80000 };
|
||
A.SaturationModulation saturationModulation11 = new A.SaturationModulation() { Val = 300000 };
|
||
|
||
schemeColor15.Append(tint6);
|
||
schemeColor15.Append(saturationModulation11);
|
||
|
||
gradientStop10.Append(schemeColor15);
|
||
|
||
A.GradientStop gradientStop11 = new A.GradientStop() { Position = 100000 };
|
||
|
||
A.SchemeColor schemeColor16 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
||
A.Shade shade7 = new A.Shade() { Val = 30000 };
|
||
A.SaturationModulation saturationModulation12 = new A.SaturationModulation() { Val = 200000 };
|
||
|
||
schemeColor16.Append(shade7);
|
||
schemeColor16.Append(saturationModulation12);
|
||
|
||
gradientStop11.Append(schemeColor16);
|
||
|
||
gradientStopList4.Append(gradientStop10);
|
||
gradientStopList4.Append(gradientStop11);
|
||
|
||
A.PathGradientFill pathGradientFill2 = new A.PathGradientFill() { Path = A.PathShadeValues.Circle };
|
||
A.FillToRectangle fillToRectangle2 = new A.FillToRectangle() { Left = 50000, Top = 50000, Right = 50000, Bottom = 50000 };
|
||
|
||
pathGradientFill2.Append(fillToRectangle2);
|
||
|
||
gradientFill4.Append(gradientStopList4);
|
||
gradientFill4.Append(pathGradientFill2);
|
||
|
||
backgroundFillStyleList1.Append(solidFill11);
|
||
backgroundFillStyleList1.Append(gradientFill3);
|
||
backgroundFillStyleList1.Append(gradientFill4);
|
||
|
||
formatScheme1.Append(fillStyleList1);
|
||
formatScheme1.Append(lineStyleList1);
|
||
formatScheme1.Append(effectStyleList1);
|
||
formatScheme1.Append(backgroundFillStyleList1);
|
||
|
||
themeElements1.Append(colorScheme1);
|
||
themeElements1.Append(fontScheme21);
|
||
themeElements1.Append(formatScheme1);
|
||
A.ObjectDefaults objectDefaults1 = new A.ObjectDefaults();
|
||
A.ExtraColorSchemeList extraColorSchemeList1 = new A.ExtraColorSchemeList();
|
||
|
||
theme1.Append(themeElements1);
|
||
theme1.Append(objectDefaults1);
|
||
theme1.Append(extraColorSchemeList1);
|
||
|
||
themePart1.Theme = theme1;
|
||
}
|
||
|
||
private void SetPackageProperties(OpenXmlPackage document)
|
||
{
|
||
document.PackageProperties.Creator = "Dan McFadden";
|
||
document.PackageProperties.Created = System.Xml.XmlConvert.ToDateTime("2013-02-15T17:25:44Z", System.Xml.XmlDateTimeSerializationMode.RoundtripKind);
|
||
document.PackageProperties.Modified = System.Xml.XmlConvert.ToDateTime("2013-07-01T22:40:35Z", System.Xml.XmlDateTimeSerializationMode.RoundtripKind);
|
||
document.PackageProperties.LastModifiedBy = "Dan McFadden";
|
||
document.PackageProperties.LastPrinted = System.Xml.XmlConvert.ToDateTime("2013-02-15T23:15:11Z", System.Xml.XmlDateTimeSerializationMode.RoundtripKind);
|
||
}
|
||
|
||
#region Binary Data
|
||
private string spreadsheetPrinterSettingsPart1Data = "UwBlAG4AZAAgAFQAbwAgAE8AbgBlAE4AbwB0AGUAIAAyADAAMQAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAbcACADAy8AAAEACQDqCm8IZAABAA8AWAICAAEAWAIDAAEATABlAHQAdABlAHIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAgAAAAEAAAD/////R0lTNAAAAAAAAAAAAAAAAERJTlUiAMgABAMcAKwT2MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAyAAAAFNNVEoAAAAAEAC4AHsAMwBFAEUAMwA5ADEAMQA0AC0AMwAwAEIANAAtADQANQBhADQALQBBADEAMAA5AC0AMQA5AEQANABBADQAMABGAEMAQwAyADIAfQAAAFJFU0RMTABVbmlyZXNETEwAUGFwZXJTaXplAExFVFRFUgBPcmllbnRhdGlvbgBQT1JUUkFJVABSZXNvbHV0aW9uAERQSTYwMABDb2xvck1vZGUAMjRicHAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAVjRETQEAAAAAAAAAAAAAAAAAAAAAAAAA";
|
||
|
||
private string spreadsheetPrinterSettingsPart2Data = "UwBlAG4AZAAgAFQAbwAgAE8AbgBlAE4AbwB0AGUAIAAyADAAMQAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAbcACADAy8AAAEACQDqCm8IZAABAA8AWAICAAEAWAIDAAEATABlAHQAdABlAHIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAgAAAAEAAAD/////R0lTNAAAAAAAAAAAAAAAAERJTlUiAMgABAMcAKwT2MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAyAAAAFNNVEoAAAAAEAC4AHsAMwBFAEUAMwA5ADEAMQA0AC0AMwAwAEIANAAtADQANQBhADQALQBBADEAMAA5AC0AMQA5AEQANABBADQAMABGAEMAQwAyADIAfQAAAFJFU0RMTABVbmlyZXNETEwAUGFwZXJTaXplAExFVFRFUgBPcmllbnRhdGlvbgBQT1JUUkFJVABSZXNvbHV0aW9uAERQSTYwMABDb2xvck1vZGUAMjRicHAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAVjRETQEAAAAAAAAAAAAAAAAAAAAAAAAA";
|
||
|
||
private System.IO.Stream GetBinaryDataStream(string base64String)
|
||
{
|
||
return new System.IO.MemoryStream(System.Convert.FromBase64String(base64String));
|
||
}
|
||
|
||
#endregion
|
||
|
||
}
|
||
}
|
||
|