7368 lines
407 KiB
C#
7368 lines
407 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 System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
|
|||
|
|
namespace ExcelExport
|
|||
|
|
{
|
|||
|
|
public class UPRLegExport : ExportBase
|
|||
|
|
{
|
|||
|
|
// Creates a SpreadsheetDocument.
|
|||
|
|
public void CreatePackage(string filePath,
|
|||
|
|
string testRefNumber,
|
|||
|
|
string testTimeInfo,
|
|||
|
|
string carMaker,
|
|||
|
|
string carModel,
|
|||
|
|
string testTemperature,
|
|||
|
|
string measuringPoint,
|
|||
|
|
string collisionSpeed,
|
|||
|
|
string impactorId,
|
|||
|
|
string impactorType,
|
|||
|
|
string studyPersonnel,
|
|||
|
|
string and1,
|
|||
|
|
string and2,
|
|||
|
|
string testCFC,
|
|||
|
|
string forceUnits,
|
|||
|
|
string momentUnits,
|
|||
|
|
string timeUnits,
|
|||
|
|
string impactorWeight,
|
|||
|
|
double [] totalForcex,
|
|||
|
|
double [] totalForcey,
|
|||
|
|
double totalForceMax,
|
|||
|
|
double totalForceMaxTime,
|
|||
|
|
double totalForceMin,
|
|||
|
|
double totalForceMinTime,
|
|||
|
|
double [] uprForcex,
|
|||
|
|
double [] uprForcey,
|
|||
|
|
double uprForceMax,
|
|||
|
|
double uprForceMaxTime,
|
|||
|
|
double uprForceMin,
|
|||
|
|
double uprForceMinTime,
|
|||
|
|
double [] lwrForcex,
|
|||
|
|
double [] lwrForcey,
|
|||
|
|
double lwrForceMax,
|
|||
|
|
double lwrForceMaxTime,
|
|||
|
|
double lwrForceMin,
|
|||
|
|
double lwrForceMinTime,
|
|||
|
|
double? forceRangeMin,
|
|||
|
|
double? forceRangeMax,
|
|||
|
|
string forceThresholds,
|
|||
|
|
double [] uprMomentx,
|
|||
|
|
double [] uprMomenty,
|
|||
|
|
double uprMomentMax,
|
|||
|
|
double uprMomentMaxTime,
|
|||
|
|
double uprMomentMin,
|
|||
|
|
double uprMomentMinTime,
|
|||
|
|
double [] midMomentx,
|
|||
|
|
double [] midMomenty,
|
|||
|
|
double midMomentMax,
|
|||
|
|
double midMomentMaxTime,
|
|||
|
|
double midMomentMin,
|
|||
|
|
double midMomentMinTime,
|
|||
|
|
double [] lwrMomentx,
|
|||
|
|
double [] lwrMomenty,
|
|||
|
|
double lwrMomentMax,
|
|||
|
|
double lwrMomentMaxTime,
|
|||
|
|
double lwrMomentMin,
|
|||
|
|
double lwrMomentMinTime,
|
|||
|
|
double? momentRangeMin,
|
|||
|
|
double? momentRangeMax,
|
|||
|
|
string momentThresholds
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
using (SpreadsheetDocument package = SpreadsheetDocument.Create(filePath, SpreadsheetDocumentType.Workbook))
|
|||
|
|
{
|
|||
|
|
CreateParts(package,
|
|||
|
|
testRefNumber,
|
|||
|
|
testTimeInfo,
|
|||
|
|
carMaker,
|
|||
|
|
carModel,
|
|||
|
|
testTemperature,
|
|||
|
|
measuringPoint,
|
|||
|
|
collisionSpeed,
|
|||
|
|
impactorId,
|
|||
|
|
impactorType,
|
|||
|
|
studyPersonnel,
|
|||
|
|
and1,
|
|||
|
|
and2,
|
|||
|
|
testCFC,
|
|||
|
|
forceUnits,
|
|||
|
|
momentUnits,
|
|||
|
|
timeUnits,
|
|||
|
|
impactorWeight,
|
|||
|
|
totalForcex,
|
|||
|
|
totalForcey,
|
|||
|
|
totalForceMax,
|
|||
|
|
totalForceMaxTime,
|
|||
|
|
totalForceMin,
|
|||
|
|
totalForceMinTime,
|
|||
|
|
uprForcex,
|
|||
|
|
uprForcey,
|
|||
|
|
uprForceMax,
|
|||
|
|
uprForceMaxTime,
|
|||
|
|
uprForceMin,
|
|||
|
|
uprForceMinTime,
|
|||
|
|
lwrForcex,
|
|||
|
|
lwrForcey,
|
|||
|
|
lwrForceMax,
|
|||
|
|
lwrForceMaxTime,
|
|||
|
|
lwrForceMin,
|
|||
|
|
lwrForceMinTime,
|
|||
|
|
forceRangeMin,
|
|||
|
|
forceRangeMax,
|
|||
|
|
forceThresholds,
|
|||
|
|
uprMomentx,
|
|||
|
|
uprMomenty,
|
|||
|
|
uprMomentMax,
|
|||
|
|
uprMomentMaxTime,
|
|||
|
|
uprMomentMin,
|
|||
|
|
uprMomentMinTime,
|
|||
|
|
midMomentx,
|
|||
|
|
midMomenty,
|
|||
|
|
midMomentMax,
|
|||
|
|
midMomentMaxTime,
|
|||
|
|
midMomentMin,
|
|||
|
|
midMomentMinTime,
|
|||
|
|
lwrMomentx,
|
|||
|
|
lwrMomenty,
|
|||
|
|
lwrMomentMax,
|
|||
|
|
lwrMomentMaxTime,
|
|||
|
|
lwrMomentMin,
|
|||
|
|
lwrMomentMinTime,
|
|||
|
|
momentRangeMin,
|
|||
|
|
momentRangeMax,
|
|||
|
|
momentThresholds);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Adds child parts and generates content of the specified part.
|
|||
|
|
private void CreateParts(SpreadsheetDocument document,
|
|||
|
|
string testRefNumber,
|
|||
|
|
string testTimeInfo,
|
|||
|
|
string carMaker,
|
|||
|
|
string carModel,
|
|||
|
|
string testTemperature,
|
|||
|
|
string measuringPoint,
|
|||
|
|
string collisionSpeed,
|
|||
|
|
string impactorId,
|
|||
|
|
string impactorType,
|
|||
|
|
string studyPersonnel,
|
|||
|
|
string and1,
|
|||
|
|
string and2,
|
|||
|
|
string testCFC,
|
|||
|
|
string forceUnits,
|
|||
|
|
string momentUnits,
|
|||
|
|
string timeUnits,
|
|||
|
|
string impactorWeight,
|
|||
|
|
double [] totalForcex,
|
|||
|
|
double [] totalForcey,
|
|||
|
|
double totalForceMax,
|
|||
|
|
double totalForceMaxTime,
|
|||
|
|
double totalForceMin,
|
|||
|
|
double totalForceMinTime,
|
|||
|
|
double [] uprForcex,
|
|||
|
|
double [] uprForcey,
|
|||
|
|
double uprForceMax,
|
|||
|
|
double uprForceMaxTime,
|
|||
|
|
double uprForceMin,
|
|||
|
|
double uprForceMinTime,
|
|||
|
|
double [] lwrForcex,
|
|||
|
|
double [] lwrForcey,
|
|||
|
|
double lwrForceMax,
|
|||
|
|
double lwrForceMaxTime,
|
|||
|
|
double lwrForceMin,
|
|||
|
|
double lwrForceMinTime,
|
|||
|
|
double? forceRangeMin,
|
|||
|
|
double? forceRangeMax,
|
|||
|
|
string forceThresholds,
|
|||
|
|
double [] uprMomentx,
|
|||
|
|
double [] uprMomenty,
|
|||
|
|
double uprMomentMax,
|
|||
|
|
double uprMomentMaxTime,
|
|||
|
|
double uprMomentMin,
|
|||
|
|
double uprMomentMinTime,
|
|||
|
|
double [] midMomentx,
|
|||
|
|
double [] midMomenty,
|
|||
|
|
double midMomentMax,
|
|||
|
|
double midMomentMaxTime,
|
|||
|
|
double midMomentMin,
|
|||
|
|
double midMomentMinTime,
|
|||
|
|
double [] lwrMomentx,
|
|||
|
|
double [] lwrMomenty,
|
|||
|
|
double lwrMomentMax,
|
|||
|
|
double lwrMomentMaxTime,
|
|||
|
|
double lwrMomentMin,
|
|||
|
|
double lwrMomentMinTime,
|
|||
|
|
double? momentRangeMin,
|
|||
|
|
double? momentRangeMax,
|
|||
|
|
string momentThresholds)
|
|||
|
|
{
|
|||
|
|
if (null != forceRangeMax && double.IsNaN((double)forceRangeMax)) { forceRangeMax = null; }
|
|||
|
|
if (null != forceRangeMin && double.IsNaN((double)forceRangeMin)) { forceRangeMin = null; }
|
|||
|
|
if (null != momentRangeMax && double.IsNaN((double)momentRangeMax)) { momentRangeMax = null; }
|
|||
|
|
if (null != momentRangeMin && double.IsNaN((double)momentRangeMin)) { momentRangeMin = 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,
|
|||
|
|
testRefNumber,
|
|||
|
|
testTimeInfo,
|
|||
|
|
carMaker,
|
|||
|
|
carModel,
|
|||
|
|
testTemperature,
|
|||
|
|
measuringPoint,
|
|||
|
|
collisionSpeed,
|
|||
|
|
impactorId,
|
|||
|
|
impactorType,
|
|||
|
|
studyPersonnel,
|
|||
|
|
and1,
|
|||
|
|
and2,
|
|||
|
|
testCFC,
|
|||
|
|
forceUnits,
|
|||
|
|
momentUnits,
|
|||
|
|
timeUnits,
|
|||
|
|
impactorWeight);
|
|||
|
|
|
|||
|
|
WorksheetPart worksheetPart1 = workbookPart1.AddNewPart<WorksheetPart>("rId3");
|
|||
|
|
GenerateDatasheetContent(worksheetPart1,
|
|||
|
|
totalForcex,
|
|||
|
|
totalForcey,
|
|||
|
|
uprForcex,
|
|||
|
|
uprForcey,
|
|||
|
|
lwrForcex,
|
|||
|
|
lwrForcey,
|
|||
|
|
uprMomentx,
|
|||
|
|
uprMomenty,
|
|||
|
|
midMomentx,
|
|||
|
|
midMomenty,
|
|||
|
|
lwrMomentx,
|
|||
|
|
lwrMomenty);
|
|||
|
|
|
|||
|
|
|
|||
|
|
WorksheetPart worksheetPart2 = workbookPart1.AddNewPart<WorksheetPart>("rId2");
|
|||
|
|
GenerateReportsheetContent(worksheetPart2,
|
|||
|
|
testRefNumber,
|
|||
|
|
testTimeInfo,
|
|||
|
|
carMaker,
|
|||
|
|
carModel,
|
|||
|
|
testTemperature,
|
|||
|
|
measuringPoint,
|
|||
|
|
collisionSpeed,
|
|||
|
|
impactorId,
|
|||
|
|
impactorType,
|
|||
|
|
studyPersonnel,
|
|||
|
|
and1,
|
|||
|
|
and2,
|
|||
|
|
testCFC,
|
|||
|
|
forceUnits,
|
|||
|
|
momentUnits,
|
|||
|
|
timeUnits,
|
|||
|
|
impactorWeight,
|
|||
|
|
totalForcex,
|
|||
|
|
totalForcey,
|
|||
|
|
totalForceMax,
|
|||
|
|
totalForceMaxTime,
|
|||
|
|
totalForceMin,
|
|||
|
|
totalForceMinTime,
|
|||
|
|
uprForcex,
|
|||
|
|
uprForcey,
|
|||
|
|
uprForceMax,
|
|||
|
|
uprForceMaxTime,
|
|||
|
|
uprForceMin,
|
|||
|
|
uprForceMinTime,
|
|||
|
|
lwrForcex,
|
|||
|
|
lwrForcey,
|
|||
|
|
lwrForceMax,
|
|||
|
|
lwrForceMaxTime,
|
|||
|
|
lwrForceMin,
|
|||
|
|
lwrForceMinTime,
|
|||
|
|
forceRangeMin,
|
|||
|
|
forceRangeMax,
|
|||
|
|
uprMomentx,
|
|||
|
|
uprMomenty,
|
|||
|
|
uprMomentMax,
|
|||
|
|
uprMomentMaxTime,
|
|||
|
|
uprMomentMin,
|
|||
|
|
uprMomentMinTime,
|
|||
|
|
midMomentx,
|
|||
|
|
midMomenty,
|
|||
|
|
midMomentMax,
|
|||
|
|
midMomentMaxTime,
|
|||
|
|
midMomentMin,
|
|||
|
|
midMomentMinTime,
|
|||
|
|
lwrMomentx,
|
|||
|
|
lwrMomenty,
|
|||
|
|
lwrMomentMax,
|
|||
|
|
lwrMomentMaxTime,
|
|||
|
|
lwrMomentMin,
|
|||
|
|
lwrMomentMinTime,
|
|||
|
|
momentRangeMin,
|
|||
|
|
momentRangeMax);
|
|||
|
|
|
|||
|
|
DrawingsPart drawingsPart1 = worksheetPart2.AddNewPart<DrawingsPart>("rId2");
|
|||
|
|
GenerateDrawingsPart1Content(drawingsPart1);
|
|||
|
|
|
|||
|
|
ChartPart chartPart1 = drawingsPart1.AddNewPart<ChartPart>("rId2");
|
|||
|
|
GenerateMomentChartContent(chartPart1,
|
|||
|
|
uprMomentx, uprMomenty,
|
|||
|
|
midMomentx, midMomenty,
|
|||
|
|
lwrMomentx, lwrMomenty,
|
|||
|
|
momentRangeMin, momentRangeMax,
|
|||
|
|
momentUnits, timeUnits, momentThresholds);
|
|||
|
|
|
|||
|
|
ChartPart chartPart2 = drawingsPart1.AddNewPart<ChartPart>("rId1");
|
|||
|
|
GenerateForceChartContent(chartPart2,
|
|||
|
|
totalForcex, totalForcey,
|
|||
|
|
uprForcex, uprForcey,
|
|||
|
|
lwrForcex, lwrForcey,
|
|||
|
|
forceRangeMin, forceRangeMax,
|
|||
|
|
forceUnits, timeUnits, forceThresholds);
|
|||
|
|
|
|||
|
|
SpreadsheetPrinterSettingsPart spreadsheetPrinterSettingsPart1 = worksheetPart2.AddNewPart<SpreadsheetPrinterSettingsPart>("rId1");
|
|||
|
|
GenerateSpreadsheetPrinterSettingsPart1Content(spreadsheetPrinterSettingsPart1);
|
|||
|
|
|
|||
|
|
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);
|
|||
|
|
CalculationChainPart calculationChainPart1 = workbookPart1.AddNewPart<CalculationChainPart>("rId17");
|
|||
|
|
calculationChainPart1.CalculationChain = _calculationChain1;
|
|||
|
|
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)4U };
|
|||
|
|
|
|||
|
|
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);
|
|||
|
|
|
|||
|
|
Vt.Variant variant3 = new Vt.Variant();
|
|||
|
|
Vt.VTLPSTR vTLPSTR2 = new Vt.VTLPSTR();
|
|||
|
|
vTLPSTR2.Text = "Named Ranges";
|
|||
|
|
|
|||
|
|
variant3.Append(vTLPSTR2);
|
|||
|
|
|
|||
|
|
Vt.Variant variant4 = new Vt.Variant();
|
|||
|
|
Vt.VTInt32 vTInt322 = new Vt.VTInt32();
|
|||
|
|
vTInt322.Text = "2";
|
|||
|
|
|
|||
|
|
variant4.Append(vTInt322);
|
|||
|
|
|
|||
|
|
vTVector1.Append(variant1);
|
|||
|
|
vTVector1.Append(variant2);
|
|||
|
|
vTVector1.Append(variant3);
|
|||
|
|
vTVector1.Append(variant4);
|
|||
|
|
|
|||
|
|
headingPairs1.Append(vTVector1);
|
|||
|
|
|
|||
|
|
Ap.TitlesOfParts titlesOfParts1 = new Ap.TitlesOfParts();
|
|||
|
|
|
|||
|
|
Vt.VTVector vTVector2 = new Vt.VTVector() { BaseType = Vt.VectorBaseValues.Lpstr, Size = (UInt32Value)5U };
|
|||
|
|
Vt.VTLPSTR vTLPSTR3 = new Vt.VTLPSTR();
|
|||
|
|
vTLPSTR3.Text = "Top page";
|
|||
|
|
Vt.VTLPSTR vTLPSTR4 = new Vt.VTLPSTR();
|
|||
|
|
vTLPSTR4.Text = "Report";
|
|||
|
|
Vt.VTLPSTR vTLPSTR5 = new Vt.VTLPSTR();
|
|||
|
|
vTLPSTR5.Text = "Data";
|
|||
|
|
Vt.VTLPSTR vTLPSTR6 = new Vt.VTLPSTR();
|
|||
|
|
vTLPSTR6.Text = "Report!Print_Area";
|
|||
|
|
Vt.VTLPSTR vTLPSTR7 = new Vt.VTLPSTR();
|
|||
|
|
vTLPSTR7.Text = "\'Top page\'!Print_Area";
|
|||
|
|
|
|||
|
|
vTVector2.Append(vTLPSTR3);
|
|||
|
|
vTVector2.Append(vTLPSTR4);
|
|||
|
|
vTVector2.Append(vTLPSTR5);
|
|||
|
|
vTVector2.Append(vTLPSTR6);
|
|||
|
|
vTVector2.Append(vTLPSTR7);
|
|||
|
|
|
|||
|
|
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 = "12.0000";
|
|||
|
|
|
|||
|
|
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();
|
|||
|
|
workbook1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
|||
|
|
FileVersion fileVersion1 = new FileVersion() { ApplicationName = "xl", LastEdited = "4", LowestEdited = "4", BuildVersion = "4507" };
|
|||
|
|
WorkbookProperties workbookProperties1 = new WorkbookProperties() { DefaultThemeVersion = (UInt32Value)124226U };
|
|||
|
|
|
|||
|
|
BookViews bookViews1 = new BookViews();
|
|||
|
|
WorkbookView workbookView1 = new WorkbookView() { XWindow = 10305, YWindow = 135, WindowWidth = (UInt32Value)18450U, WindowHeight = (UInt32Value)14880U };
|
|||
|
|
|
|||
|
|
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);
|
|||
|
|
|
|||
|
|
DefinedNames definedNames1 = new DefinedNames();
|
|||
|
|
DefinedName definedName1 = new DefinedName() { Name = "_xlnm.Print_Area", LocalSheetId = (UInt32Value)1U };
|
|||
|
|
definedName1.Text = "Report!$A$1:$R$63";
|
|||
|
|
DefinedName definedName2 = new DefinedName() { Name = "_xlnm.Print_Area", LocalSheetId = (UInt32Value)0U };
|
|||
|
|
definedName2.Text = "\'Top page\'!$A$1:$AD$53";
|
|||
|
|
|
|||
|
|
definedNames1.Append(definedName1);
|
|||
|
|
definedNames1.Append(definedName2);
|
|||
|
|
CalculationProperties calculationProperties1 = new CalculationProperties() { CalculationId = (UInt32Value)125725U };
|
|||
|
|
|
|||
|
|
workbook1.Append(fileVersion1);
|
|||
|
|
workbook1.Append(workbookProperties1);
|
|||
|
|
workbook1.Append(bookViews1);
|
|||
|
|
workbook1.Append(sheets1);
|
|||
|
|
workbook1.Append(definedNames1);
|
|||
|
|
workbook1.Append(calculationProperties1);
|
|||
|
|
|
|||
|
|
workbookPart1.Workbook = workbook1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Generates content of worksheetPart1.
|
|||
|
|
private void GenerateDatasheetContent(WorksheetPart worksheetPart1,
|
|||
|
|
double [] TFx, double [] TFy,
|
|||
|
|
double [] UFx, double [] UFy,
|
|||
|
|
double [] LFx, double [] LFy,
|
|||
|
|
double [] UMx, double [] UMy,
|
|||
|
|
double [] MMx, double [] MMy,
|
|||
|
|
double [] LMx, double [] LMy)
|
|||
|
|
{
|
|||
|
|
Worksheet worksheet1 = new Worksheet();
|
|||
|
|
worksheet1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
|||
|
|
int maxLength = System.Math.Max(TFx.Length, UFx.Length);
|
|||
|
|
maxLength = System.Math.Max(maxLength, LFx.Length);
|
|||
|
|
maxLength = System.Math.Max(maxLength, UMx.Length);
|
|||
|
|
maxLength = System.Math.Max(maxLength, MMx.Length);
|
|||
|
|
maxLength = System.Math.Max(maxLength, LMx.Length);
|
|||
|
|
|
|||
|
|
SheetDimension sheetDimension1 = new SheetDimension()
|
|||
|
|
{
|
|||
|
|
Reference =
|
|||
|
|
string.Format("A1:L{0}", 2 + maxLength)
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
SheetViews sheetViews1 = new SheetViews();
|
|||
|
|
SheetView sheetView1 = new SheetView() { WorkbookViewId = (UInt32Value)0U };
|
|||
|
|
|
|||
|
|
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:12" } };
|
|||
|
|
|
|||
|
|
r.Append(CreateTextCell("A1", "TF-x"));
|
|||
|
|
r.Append(CreateTextCell("B1", "TF-y"));
|
|||
|
|
r.Append(CreateTextCell("C1", "UF-x"));
|
|||
|
|
r.Append(CreateTextCell("D1", "UF-y"));
|
|||
|
|
r.Append(CreateTextCell("E1", "LF-x"));
|
|||
|
|
r.Append(CreateTextCell("F1", "LF-y"));
|
|||
|
|
r.Append(CreateTextCell("G1", "UM-x"));
|
|||
|
|
r.Append(CreateTextCell("H1", "UM-y"));
|
|||
|
|
r.Append(CreateTextCell("I1", "MM-x"));
|
|||
|
|
r.Append(CreateTextCell("J1", "MM-y"));
|
|||
|
|
r.Append(CreateTextCell("K1", "LM-x"));
|
|||
|
|
r.Append(CreateTextCell("L1", "LM-y"));
|
|||
|
|
|
|||
|
|
sheetData1.Append(r);
|
|||
|
|
|
|||
|
|
for (int i = 0; i < maxLength; i++)
|
|||
|
|
{
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)System.Convert.ToUInt32(2 + i), Spans = new ListValue<StringValue>() { InnerText = "1:12" } };
|
|||
|
|
|
|||
|
|
r.Append(CreateNumericCell("A", TFx, i));
|
|||
|
|
r.Append(CreateNumericCell("B", TFy, i));
|
|||
|
|
|
|||
|
|
r.Append(CreateNumericCell("C", UFx, i));
|
|||
|
|
r.Append(CreateNumericCell("D", UFy, i));
|
|||
|
|
|
|||
|
|
r.Append(CreateNumericCell("E", LFx, i));
|
|||
|
|
r.Append(CreateNumericCell("F", LFy, i));
|
|||
|
|
|
|||
|
|
r.Append(CreateNumericCell("G", UMx, i));
|
|||
|
|
r.Append(CreateNumericCell("H", UMy, i));
|
|||
|
|
|
|||
|
|
r.Append(CreateNumericCell("I", MMx, i));
|
|||
|
|
r.Append(CreateNumericCell("J", MMy, i));
|
|||
|
|
|
|||
|
|
r.Append(CreateNumericCell("K", LMx, i));
|
|||
|
|
r.Append(CreateNumericCell("L", LMy, i));
|
|||
|
|
|
|||
|
|
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 Row CreateBlankRow(uint idx)
|
|||
|
|
{
|
|||
|
|
Row r = new Row() { RowIndex = (UInt32Value)idx, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("A{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("B{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("C{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("D{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("E{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("F{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("G{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("H{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("I{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("J{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("K{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("L{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("M{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("N{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("O{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("P{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("Q{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("R{0}", idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
return r;
|
|||
|
|
}
|
|||
|
|
// Generates content of worksheetPart2.
|
|||
|
|
private void GenerateReportsheetContent(WorksheetPart worksheetPart2,
|
|||
|
|
string testRefNumber,
|
|||
|
|
string testTimeInfo,
|
|||
|
|
string carMaker,
|
|||
|
|
string carModel,
|
|||
|
|
string testTemperature,
|
|||
|
|
string measuringPoint,
|
|||
|
|
string collisionSpeed,
|
|||
|
|
string impactorId,
|
|||
|
|
string impactorType,
|
|||
|
|
string studyPersonnel,
|
|||
|
|
string and1,
|
|||
|
|
string and2,
|
|||
|
|
string testCFC,
|
|||
|
|
string forceUnits,
|
|||
|
|
string momentUnits,
|
|||
|
|
string timeUnits,
|
|||
|
|
string impactorWeight,
|
|||
|
|
double[] TFx,
|
|||
|
|
double[] TFy,
|
|||
|
|
double TFMax,
|
|||
|
|
double TFMaxTime,
|
|||
|
|
double TFMin,
|
|||
|
|
double TFMinTime,
|
|||
|
|
double[] UFx,
|
|||
|
|
double[] UFy,
|
|||
|
|
double UFMax,
|
|||
|
|
double UFMaxTime,
|
|||
|
|
double UFMin,
|
|||
|
|
double UFMinTime,
|
|||
|
|
double[] LFx,
|
|||
|
|
double[] LFy,
|
|||
|
|
double LFMax,
|
|||
|
|
double LFMaxTime,
|
|||
|
|
double LFMin,
|
|||
|
|
double LFMinTime,
|
|||
|
|
double? forceRangeMin,
|
|||
|
|
double? forceRangeMax,
|
|||
|
|
double[] UMx,
|
|||
|
|
double[] UMy,
|
|||
|
|
double UMMax,
|
|||
|
|
double UMMaxTime,
|
|||
|
|
double UMMin,
|
|||
|
|
double UMMinTime,
|
|||
|
|
double[] MMx,
|
|||
|
|
double[] MMy,
|
|||
|
|
double MMMax,
|
|||
|
|
double MMMaxTime,
|
|||
|
|
double MMMin,
|
|||
|
|
double MMMinTime,
|
|||
|
|
double[] LMx,
|
|||
|
|
double[] LMy,
|
|||
|
|
double LMMax,
|
|||
|
|
double LMMaxTime,
|
|||
|
|
double LMMin,
|
|||
|
|
double LMMinTime,
|
|||
|
|
double? momentRangeMin,
|
|||
|
|
double? momentRangeMax)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
Worksheet worksheet2 = new Worksheet();
|
|||
|
|
worksheet2.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
|||
|
|
SheetDimension sheetDimension2 = new SheetDimension() { Reference = "A1:R63" };
|
|||
|
|
|
|||
|
|
SheetViews sheetViews2 = new SheetViews();
|
|||
|
|
|
|||
|
|
SheetView sheetView2 = new SheetView() { WorkbookViewId = (UInt32Value)0U };
|
|||
|
|
Selection selection2 = new Selection() { ActiveCell = "A1", SequenceOfReferences = new ListValue<StringValue>() { InnerText = "A1" } };
|
|||
|
|
|
|||
|
|
sheetView2.Append(selection2);
|
|||
|
|
|
|||
|
|
sheetViews2.Append(sheetView2);
|
|||
|
|
SheetFormatProperties sheetFormatProperties2 = new SheetFormatProperties() { DefaultColumnWidth = 4.85546875D, DefaultRowHeight = 11.25D, CustomHeight = true };
|
|||
|
|
|
|||
|
|
Columns columns1 = new Columns();
|
|||
|
|
Column column1 = new Column() { Min = (UInt32Value)1U, Max = (UInt32Value)16384U, Width = 4.85546875D, Style = (UInt32Value)1U };
|
|||
|
|
|
|||
|
|
columns1.Append(column1);
|
|||
|
|
|
|||
|
|
SheetData sheetData2 = new SheetData();
|
|||
|
|
MergeCells mergeCells1 = new MergeCells();
|
|||
|
|
|
|||
|
|
Row r = new Row() { RowIndex = (UInt32Value)1U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("A1", (UInt32Value)7U, "UPR Leg"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "B1", StyleIndex = (UInt32Value)8U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C1", StyleIndex = (UInt32Value)9U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)2U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("A2", (UInt32Value)10U, "TEST"));
|
|||
|
|
r.Append(new Cell() { CellReference = "B2", StyleIndex = (UInt32Value)11U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C2", StyleIndex = (UInt32Value)12U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)3U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R3", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)4U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(CreateStylizedTextCell("A4", (UInt32Value)29U, "試験NO"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "B4", StyleIndex = (UInt32Value)30U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("C4", (UInt32Value)22U, testRefNumber, "試験NO"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "D4", StyleIndex = (UInt32Value)22U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("E4",(UInt32Value)29U, "試験温度"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "F4", StyleIndex = (UInt32Value)6U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G4", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("H4", (UInt32Value)22U, testTemperature, "試験温度"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "I4", StyleIndex = (UInt32Value)22U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("J4", (UInt32Value)29U, "インパクタID"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "K4", StyleIndex = (UInt32Value)6U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L4", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M4", (UInt32Value)22U, impactorId, "インパクタID"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N4", StyleIndex = (UInt32Value)22U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("O4", (UInt32Value)29U, "試験担当者"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "P4", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("Q4", (UInt32Value)22U, testCFC, "試験担当者"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "R4", StyleIndex = (UInt32Value)22U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)5U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("A5", (UInt32Value)29U, "試験実施日"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "B5", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("C5", (UInt32Value)23U, testTimeInfo, "試験実施日"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "D5", StyleIndex = (UInt32Value)23U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E5", StyleIndex = (UInt32Value)29U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F5", StyleIndex = (UInt32Value)6U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G5", StyleIndex = (UInt32Value)6U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H5", StyleIndex = (UInt32Value)33U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I5", StyleIndex = (UInt32Value)33U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("J5", (UInt32Value)29U, "インパクタ種類"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "K5", StyleIndex = (UInt32Value)6U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L5", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M5", (UInt32Value)23U, impactorType, "インパクタ種類"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N5", StyleIndex = (UInt32Value)23U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O5", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P5", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q5", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R5", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)6U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("A6", (UInt32Value)29U, "車名"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "B6", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("C6", (UInt32Value)23U, carMaker, "車名"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "D6", StyleIndex = (UInt32Value)23U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("E6", (UInt32Value)29U, "測定点"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "F6", StyleIndex = (UInt32Value)6U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G6", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("H6", (UInt32Value)22U, measuringPoint, "測定点"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "I6", StyleIndex = (UInt32Value)22U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("J6", (UInt32Value)29U, "インパクタ重量"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "K6", StyleIndex = (UInt32Value)6U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L6", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M6", (UInt32Value)23U, impactorWeight, "インパクタ重量"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N6", StyleIndex = (UInt32Value)22U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("O6", (UInt32Value)29U, "予備1"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "P6", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("Q6", (UInt32Value)22U, and1, "予備1"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "R6", StyleIndex = (UInt32Value)22U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)7U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("A7", (UInt32Value)29U, "型式"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "B7", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("C7", (UInt32Value)23U, carModel, "予備1"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "D7", StyleIndex = (UInt32Value)23U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("E7", (UInt32Value)29U, "衝突速度"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "F7", StyleIndex = (UInt32Value)6U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G7", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("H7", (UInt32Value)23U, collisionSpeed, "衝突速度"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "I7", StyleIndex = (UInt32Value)23U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("J7", (UInt32Value)29U, "試験担当者"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "K7", StyleIndex = (UInt32Value)6U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L7", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M7", (UInt32Value)23U, studyPersonnel, "試験担当者"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N7", StyleIndex = (UInt32Value)22U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("O7", (UInt32Value)29U, "予備2"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "P7", StyleIndex = (UInt32Value)6U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("Q7", (UInt32Value)22U, and2, "予備2"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "R7", StyleIndex = (UInt32Value)23U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)8U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("A8", (UInt32Value)38U, "Force"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "B8", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C8", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D8", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E8", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F8", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G8", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H8", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I8", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J8", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K8", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L8", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M8", StyleIndex = (UInt32Value)4U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N8", StyleIndex = (UInt32Value)4U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O8", StyleIndex = (UInt32Value)4U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P8", StyleIndex = (UInt32Value)4U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q8", StyleIndex = (UInt32Value)4U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R8", StyleIndex = (UInt32Value)4U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)9U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L9", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M9", (UInt32Value)37U, string.Format("Total Force({0})",forceUnits)));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N9", StyleIndex = (UInt32Value)37U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O9", StyleIndex = (UInt32Value)37U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P9", StyleIndex = (UInt32Value)37U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q9", StyleIndex = (UInt32Value)37U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R9", StyleIndex = (UInt32Value)37U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)10U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M10", (UInt32Value)25U,"Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N10", StyleIndex = (UInt32Value)25U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O10", StyleIndex = (UInt32Value)25U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P10", (UInt32Value)26U, TFMax.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q10", StyleIndex = (UInt32Value)26U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R10", StyleIndex = (UInt32Value)26U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)11U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L11", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M11", (UInt32Value)25U, "Time of Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N11", StyleIndex = (UInt32Value)25U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O11", StyleIndex = (UInt32Value)25U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P11", (UInt32Value)36U, TFMaxTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q11", StyleIndex = (UInt32Value)36U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R11", StyleIndex = (UInt32Value)36U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)12U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M12", (UInt32Value)25U, "Min"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N12", StyleIndex = (UInt32Value)25U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O12", StyleIndex = (UInt32Value)25U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P12", (UInt32Value)36U, TFMin.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q12", StyleIndex = (UInt32Value)36U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R12", StyleIndex = (UInt32Value)36U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)13U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L13", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M13", (UInt32Value)25U, "Time of Min"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N13", StyleIndex = (UInt32Value)25U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O13", StyleIndex = (UInt32Value)25U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P13", (UInt32Value)36U, TFMinTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q13", StyleIndex = (UInt32Value)36U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R13", StyleIndex = (UInt32Value)36U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)14U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M14", (UInt32Value)24U, string.Format("UPR Force ({0})", forceUnits)));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N14", StyleIndex = (UInt32Value)24U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O14", StyleIndex = (UInt32Value)24U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P14", StyleIndex = (UInt32Value)24U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q14", StyleIndex = (UInt32Value)24U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R14", StyleIndex = (UInt32Value)24U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)15U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L15", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M15", (UInt32Value)39U, "Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N15", StyleIndex = (UInt32Value)39U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O15", StyleIndex = (UInt32Value)39U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P15", (UInt32Value)26U, UFMax.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q15", StyleIndex = (UInt32Value)26U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R15", StyleIndex = (UInt32Value)26U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)16U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M16", (UInt32Value)39U, "Time of Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N16", StyleIndex = (UInt32Value)39U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O16", StyleIndex = (UInt32Value)39U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P16", (UInt32Value)26U, UFMaxTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q16", StyleIndex = (UInt32Value)26U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R16", StyleIndex = (UInt32Value)26U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)17U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L17", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M17", (UInt32Value)39U, "Min"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N17", StyleIndex = (UInt32Value)39U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O17", StyleIndex = (UInt32Value)39U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P17", (UInt32Value)26U, UFMin.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q17", StyleIndex = (UInt32Value)26U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R17", StyleIndex = (UInt32Value)26U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)18U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M18", (UInt32Value)39U, "Time of Min"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N18", StyleIndex = (UInt32Value)39U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O18", StyleIndex = (UInt32Value)39U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P18", (UInt32Value)26U, UFMinTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q18", StyleIndex = (UInt32Value)26U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R18", StyleIndex = (UInt32Value)26U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)19U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L19", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M19", (UInt32Value)27U,string.Format("LWR Force({0})", forceUnits)));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N19", StyleIndex = (UInt32Value)27U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O19", StyleIndex = (UInt32Value)27U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P19", StyleIndex = (UInt32Value)27U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q19", StyleIndex = (UInt32Value)27U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R19", StyleIndex = (UInt32Value)27U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)20U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M20", (UInt32Value)41U, "Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N20", StyleIndex = (UInt32Value)41U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O20", StyleIndex = (UInt32Value)41U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P20", (UInt32Value)26U, LFMax.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q20", StyleIndex = (UInt32Value)26U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R20", StyleIndex = (UInt32Value)26U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)21U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L21", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M21", (UInt32Value)41U, "Time of Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N21", StyleIndex = (UInt32Value)41U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O21", StyleIndex = (UInt32Value)41U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P21", (UInt32Value)26U, LFMaxTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q21", StyleIndex = (UInt32Value)26U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R21", StyleIndex = (UInt32Value)26U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)22U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M22", (UInt32Value)41U, "Min") );
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N22", StyleIndex = (UInt32Value)41U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O22", StyleIndex = (UInt32Value)41U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P22", (UInt32Value)26U, LFMin.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q22", StyleIndex = (UInt32Value)26U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R22", StyleIndex = (UInt32Value)26U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)23U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L23", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M23", (UInt32Value)41U, "Time of Min"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N23", StyleIndex = (UInt32Value)41U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O23", StyleIndex = (UInt32Value)41U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P23", (UInt32Value)26U, LFMinTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q23", StyleIndex = (UInt32Value)26U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R23", StyleIndex = (UInt32Value)26U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
for( uint i = 24; i < 30U; i ++ ){ sheetData2.Append(CreateBlankRow(i));}
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)30U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("A30", (UInt32Value)38U, "Moment"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "B30", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C30", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D30", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E30", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F30", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G30", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H30", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I30", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J30", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K30", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L30", StyleIndex = (UInt32Value)38U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M30", StyleIndex = (UInt32Value)4U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N30", StyleIndex = (UInt32Value)4U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O30", StyleIndex = (UInt32Value)4U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P30", StyleIndex = (UInt32Value)4U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q30", StyleIndex = (UInt32Value)4U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R30", StyleIndex = (UInt32Value)4U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)31U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L31", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M31", (UInt32Value)37U, string.Format("UPR Moment({0})", momentUnits)));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N31", StyleIndex = (UInt32Value)37U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O31", StyleIndex = (UInt32Value)37U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P31", StyleIndex = (UInt32Value)37U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q31", StyleIndex = (UInt32Value)37U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R31", StyleIndex = (UInt32Value)37U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)32U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M32", (UInt32Value)25U, "Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N32", StyleIndex = (UInt32Value)25U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O32", StyleIndex = (UInt32Value)25U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P32", (UInt32Value)40, UMMax.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q32", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R32", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)33U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M33", (UInt32Value)25U, "Time of Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N33", StyleIndex = (UInt32Value)25U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O33", StyleIndex = (UInt32Value)25U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P33", (UInt32Value)40U, UMMaxTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q33", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R33", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)34U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L34", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M34", (UInt32Value)25U, "Min"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N34", StyleIndex = (UInt32Value)25U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O34", StyleIndex = (UInt32Value)25U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P34", (UInt32Value)40U, UMMin.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q34", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R34", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)35U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M35", (UInt32Value)25U, "Time of Min"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N35", StyleIndex = (UInt32Value)25U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O35", StyleIndex = (UInt32Value)25U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P35", (UInt32Value)40U, UMMinTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q35", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R35", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)36U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M36", (UInt32Value)24U, string.Format("MID Moment({0})",momentUnits)));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N36", StyleIndex = (UInt32Value)24U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O36", StyleIndex = (UInt32Value)24U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P36", StyleIndex = (UInt32Value)24U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q36", StyleIndex = (UInt32Value)24U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R36", StyleIndex = (UInt32Value)24U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)37U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L37", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M37", (UInt32Value)39U, "Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N37", StyleIndex = (UInt32Value)39U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O37", StyleIndex = (UInt32Value)39U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P37", (UInt32Value)40U, MMMax.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q37", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R37", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)38U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M38", (UInt32Value)39U, "Time of Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N38", StyleIndex = (UInt32Value)39U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O38", StyleIndex = (UInt32Value)39U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P38", (UInt32Value)40U, MMMaxTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q38", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R38", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)39U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L39", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M39", (UInt32Value)39U, "Min"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N39", StyleIndex = (UInt32Value)39U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O39", StyleIndex = (UInt32Value)39U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P39", (UInt32Value)40U, MMMin.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q39", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R39", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)40U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M40", (UInt32Value)39U, "Time of Min"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N40", StyleIndex = (UInt32Value)39U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O40", StyleIndex = (UInt32Value)39U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P40", (UInt32Value)40U, MMMinTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q40", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R40", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)41U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L41", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M41", (UInt32Value)27U, string.Format("LWR Moment({0})", momentUnits)));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N41", StyleIndex = (UInt32Value)27U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O41", StyleIndex = (UInt32Value)27U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P41", StyleIndex = (UInt32Value)27U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Q41", StyleIndex = (UInt32Value)27U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R41", StyleIndex = (UInt32Value)27U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)42U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L42", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M42", (UInt32Value)41U, "Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N42", StyleIndex = (UInt32Value)41U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O42", StyleIndex = (UInt32Value)41U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P42", (UInt32Value)40U, LMMax.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q42", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R42", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)43U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L43", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M43", (UInt32Value)41U, "Time of Max"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N43", StyleIndex = (UInt32Value)41U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O43", StyleIndex = (UInt32Value)41U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P43", (UInt32Value)40U, LMMaxTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q43", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R43", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)44U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L44", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M44", (UInt32Value)41U, "Min"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N44", StyleIndex = (UInt32Value)41U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O44", StyleIndex = (UInt32Value)41U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P44", (UInt32Value)40U, LMMin.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q44", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R44", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)45U, Spans = new ListValue<StringValue>() { InnerText = "1:18" }, Height = 11.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L45", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("M45", (UInt32Value)41U, "Time of Min") );
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "N45", StyleIndex = (UInt32Value)41U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O45", StyleIndex = (UInt32Value)41U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P45", (UInt32Value)40U, LMMinTime.ToString()));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q45", StyleIndex = (UInt32Value)40U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R45", StyleIndex = (UInt32Value)40U });
|
|||
|
|
|
|||
|
|
sheetData2.Append(r);
|
|||
|
|
|
|||
|
|
for( uint i = 46U; i <= 63; i ++ ){ sheetData2.Append(CreateBlankRow(i));}
|
|||
|
|
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P42:R42" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P43:R43" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P44:R44" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P45:R45" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M42:O42" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M43:O43" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M44:O44" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M45:O45" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M39:O39" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M40:O40" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M41:R41" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P37:R37" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P38:R38" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P39:R39" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P40:R40" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "A8:L8" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "A30:L30" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M36:R36" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M37:O37" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M38:O38" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M31:R31" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M32:O32" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M33:O33" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M34:O34" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M35:O35" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P32:R32" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P33:R33" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P34:R34" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P35:R35" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M13:O13" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P10:R10" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M5:N5" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P11:R11" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P12:R12" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P13:R13" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M9:R9" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M10:O10" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M11:O11" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M12:O12" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "Q4:R4" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "Q6:R6" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "Q7:R7" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "C6:D6" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "C7:D7" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "H4:I4" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "H5:I5" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "H6:I6" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "H7:I7" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "J5:L5" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "J6:L6" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "J7:L7" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "O4:P4" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "O6:P6" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "O7:P7" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M4:N4" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M19:R19" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M20:O20" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M21:O21" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M22:O22" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M23:O23" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P20:R20" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P21:R21" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P22:R22" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P23:R23" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M15:O15" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M16:O16" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M17:O17" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M18:O18" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P15:R15" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P16:R16" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P17:R17" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "P18:R18" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "A1:C1" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "A2:C2" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "C4:D4" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "C5:D5" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M14:R14" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M6:N6" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "M7:N7" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "A4:B4" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "A5:B5" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "A6:B6" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "A7:B7" });
|
|||
|
|
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 = "E7:G7" });
|
|||
|
|
mergeCells1.Append(new MergeCell() { Reference = "J4:L4" });
|
|||
|
|
|
|||
|
|
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 = "9525";
|
|||
|
|
Xdr.RowId rowId1 = new Xdr.RowId();
|
|||
|
|
rowId1.Text = "8";
|
|||
|
|
Xdr.RowOffset rowOffset1 = new Xdr.RowOffset();
|
|||
|
|
rowOffset1.Text = "19050";
|
|||
|
|
|
|||
|
|
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 = "11";
|
|||
|
|
Xdr.ColumnOffset columnOffset2 = new Xdr.ColumnOffset();
|
|||
|
|
columnOffset2.Text = "295275";
|
|||
|
|
Xdr.RowId rowId2 = new Xdr.RowId();
|
|||
|
|
rowId2.Text = "28";
|
|||
|
|
Xdr.RowOffset rowOffset2 = new Xdr.RowOffset();
|
|||
|
|
rowOffset2.Text = "133350";
|
|||
|
|
|
|||
|
|
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)2U, Name = "Chart 1" };
|
|||
|
|
Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties1 = new Xdr.NonVisualGraphicFrameDrawingProperties();
|
|||
|
|
|
|||
|
|
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 = "9525";
|
|||
|
|
Xdr.RowId rowId3 = new Xdr.RowId();
|
|||
|
|
rowId3.Text = "30";
|
|||
|
|
Xdr.RowOffset rowOffset3 = new Xdr.RowOffset();
|
|||
|
|
rowOffset3.Text = "19050";
|
|||
|
|
|
|||
|
|
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 = "11";
|
|||
|
|
Xdr.ColumnOffset columnOffset4 = new Xdr.ColumnOffset();
|
|||
|
|
columnOffset4.Text = "304800";
|
|||
|
|
Xdr.RowId rowId4 = new Xdr.RowId();
|
|||
|
|
rowId4.Text = "50";
|
|||
|
|
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)3U, Name = "Chart 2" };
|
|||
|
|
Xdr.NonVisualGraphicFrameDrawingProperties nonVisualGraphicFrameDrawingProperties2 = new Xdr.NonVisualGraphicFrameDrawingProperties();
|
|||
|
|
|
|||
|
|
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);
|
|||
|
|
|
|||
|
|
worksheetDrawing1.Append(twoCellAnchor1);
|
|||
|
|
worksheetDrawing1.Append(twoCellAnchor2);
|
|||
|
|
|
|||
|
|
drawingsPart1.WorksheetDrawing = worksheetDrawing1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Generates content of chartPart1.
|
|||
|
|
private void GenerateMomentChartContent(ChartPart chartPart1,
|
|||
|
|
double [] UMx, double [] UMy,
|
|||
|
|
double [] MMx, double [] MMy,
|
|||
|
|
double [] LMx, double [] LMy,
|
|||
|
|
double? rangeMin, double? rangeMax,
|
|||
|
|
string momentUnits, string timeUnits,
|
|||
|
|
string momentThresholds)
|
|||
|
|
{
|
|||
|
|
List<double> lines = new List<double>();
|
|||
|
|
foreach (string t in momentThresholds.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.EditingLanguage editingLanguage1 = new C.EditingLanguage() { Val = "en-US" };
|
|||
|
|
|
|||
|
|
C.Chart chart1 = new C.Chart();
|
|||
|
|
|
|||
|
|
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.ScatterChartSeries scatterChartSeries1 = new C.ScatterChartSeries();
|
|||
|
|
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 = "UM";
|
|||
|
|
|
|||
|
|
seriesText1.Append(numericValue1);
|
|||
|
|
|
|||
|
|
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!$G$2:$G${0}",UMx.Length+1);
|
|||
|
|
|
|||
|
|
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(UMx.Length) };
|
|||
|
|
|
|||
|
|
numberingCache1.Append(formatCode1);
|
|||
|
|
numberingCache1.Append(pointCount1);
|
|||
|
|
|
|||
|
|
for (int i = 0; i < UMx.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = UMx[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
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+UMy.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(UMy.Length) };
|
|||
|
|
|
|||
|
|
numberingCache2.Append(formatCode2);
|
|||
|
|
numberingCache2.Append(pointCount2);
|
|||
|
|
|
|||
|
|
for (int i = 0; i < UMy.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = UMy[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
numberingCache2.Append(p);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
numberReference2.Append(formula2);
|
|||
|
|
numberReference2.Append(numberingCache2);
|
|||
|
|
|
|||
|
|
yValues1.Append(numberReference2);
|
|||
|
|
C.Smooth smooth1 = new C.Smooth() { Val = false };
|
|||
|
|
|
|||
|
|
scatterChartSeries1.Append(index1);
|
|||
|
|
scatterChartSeries1.Append(order1);
|
|||
|
|
scatterChartSeries1.Append(seriesText1);
|
|||
|
|
scatterChartSeries1.Append(marker1);
|
|||
|
|
scatterChartSeries1.Append(xValues1);
|
|||
|
|
scatterChartSeries1.Append(yValues1);
|
|||
|
|
scatterChartSeries1.Append(smooth1);
|
|||
|
|
|
|||
|
|
C.ScatterChartSeries scatterChartSeries2 = new C.ScatterChartSeries();
|
|||
|
|
C.Index index2 = new C.Index() { Val = (UInt32Value)1U };
|
|||
|
|
C.Order order2 = new C.Order() { Val = (UInt32Value)1U };
|
|||
|
|
|
|||
|
|
C.SeriesText seriesText2 = new C.SeriesText();
|
|||
|
|
C.NumericValue numericValue24 = new C.NumericValue();
|
|||
|
|
numericValue24.Text = "MM";
|
|||
|
|
|
|||
|
|
seriesText2.Append(numericValue24);
|
|||
|
|
|
|||
|
|
C.Marker marker2 = new C.Marker();
|
|||
|
|
C.Symbol symbol2 = new C.Symbol() { Val = C.MarkerStyleValues.None };
|
|||
|
|
|
|||
|
|
marker2.Append(symbol2);
|
|||
|
|
|
|||
|
|
C.XValues xValues2 = new C.XValues();
|
|||
|
|
|
|||
|
|
C.NumberReference numberReference3 = new C.NumberReference();
|
|||
|
|
C.Formula formula3 = new C.Formula();
|
|||
|
|
formula3.Text = string.Format("Data!$I$2:$I${0}",1+MMx.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(MMx.Length) };
|
|||
|
|
|
|||
|
|
numberingCache3.Append(formatCode3);
|
|||
|
|
numberingCache3.Append(pointCount3);
|
|||
|
|
|
|||
|
|
for (int i = 0; i < MMx.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = MMx[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
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!$J$2:$J${0}", MMy.Length+1);
|
|||
|
|
|
|||
|
|
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(MMy.Length)};
|
|||
|
|
|
|||
|
|
numberingCache4.Append(formatCode4);
|
|||
|
|
numberingCache4.Append(pointCount4);
|
|||
|
|
for (int i = 0; i < MMy.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = MMy[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
numberingCache4.Append(p);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
numberReference4.Append(formula4);
|
|||
|
|
numberReference4.Append(numberingCache4);
|
|||
|
|
|
|||
|
|
yValues2.Append(numberReference4);
|
|||
|
|
C.Smooth smooth2 = new C.Smooth() { Val = false };
|
|||
|
|
|
|||
|
|
scatterChartSeries2.Append(index2);
|
|||
|
|
scatterChartSeries2.Append(order2);
|
|||
|
|
scatterChartSeries2.Append(seriesText2);
|
|||
|
|
scatterChartSeries2.Append(marker2);
|
|||
|
|
scatterChartSeries2.Append(xValues2);
|
|||
|
|
scatterChartSeries2.Append(yValues2);
|
|||
|
|
scatterChartSeries2.Append(smooth2);
|
|||
|
|
|
|||
|
|
C.ScatterChartSeries scatterChartSeries3 = new C.ScatterChartSeries();
|
|||
|
|
C.Index index3 = new C.Index() { Val = (UInt32Value)2U };
|
|||
|
|
C.Order order3 = new C.Order() { Val = (UInt32Value)2U };
|
|||
|
|
|
|||
|
|
C.SeriesText seriesText3 = new C.SeriesText();
|
|||
|
|
C.NumericValue numericValue47 = new C.NumericValue();
|
|||
|
|
numericValue47.Text = "LM";
|
|||
|
|
|
|||
|
|
seriesText3.Append(numericValue47);
|
|||
|
|
|
|||
|
|
C.Marker marker3 = new C.Marker();
|
|||
|
|
C.Symbol symbol3 = new C.Symbol() { Val = C.MarkerStyleValues.None };
|
|||
|
|
|
|||
|
|
marker3.Append(symbol3);
|
|||
|
|
|
|||
|
|
C.XValues xValues3 = new C.XValues();
|
|||
|
|
|
|||
|
|
C.NumberReference numberReference5 = new C.NumberReference();
|
|||
|
|
C.Formula formula5 = new C.Formula();
|
|||
|
|
formula5.Text = string.Format("Data!$K$2:$K${0}",1+LMx.Length);
|
|||
|
|
|
|||
|
|
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(LMx.Length) };
|
|||
|
|
|
|||
|
|
numberingCache5.Append(formatCode5);
|
|||
|
|
numberingCache5.Append(pointCount5);
|
|||
|
|
|
|||
|
|
for (int i = 0; i < LMx.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = LMx[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
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!$L$2:$L${0}",1+LMy.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(LMy.Length) };
|
|||
|
|
|
|||
|
|
numberingCache6.Append(formatCode6);
|
|||
|
|
numberingCache6.Append(pointCount6);
|
|||
|
|
|
|||
|
|
for (int i = 0; i < LMy.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = LMy[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
numberingCache6.Append(p);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
numberReference6.Append(formula6);
|
|||
|
|
numberReference6.Append(numberingCache6);
|
|||
|
|
|
|||
|
|
yValues3.Append(numberReference6);
|
|||
|
|
C.Smooth smooth3 = new C.Smooth() { Val = false };
|
|||
|
|
|
|||
|
|
scatterChartSeries3.Append(index3);
|
|||
|
|
scatterChartSeries3.Append(order3);
|
|||
|
|
scatterChartSeries3.Append(seriesText3);
|
|||
|
|
scatterChartSeries3.Append(marker3);
|
|||
|
|
scatterChartSeries3.Append(xValues3);
|
|||
|
|
scatterChartSeries3.Append(yValues3);
|
|||
|
|
scatterChartSeries3.Append(smooth3);
|
|||
|
|
C.AxisId axisId1 = new C.AxisId() { Val = (UInt32Value)41454976U };
|
|||
|
|
C.AxisId axisId2 = new C.AxisId() { Val = (UInt32Value)41465344U };
|
|||
|
|
|
|||
|
|
scatterChart1.Append(scatterStyle1);
|
|||
|
|
scatterChart1.Append(scatterChartSeries1);
|
|||
|
|
scatterChart1.Append(scatterChartSeries2);
|
|||
|
|
scatterChart1.Append(scatterChartSeries3);
|
|||
|
|
|
|||
|
|
double maxX = 0D;
|
|||
|
|
double minX = 0D;
|
|||
|
|
|
|||
|
|
if (UMx.Count() > 0 && LMx.Count() > 0)
|
|||
|
|
{
|
|||
|
|
minX = System.Math.Min(UMx.Min(), LMx.Min());
|
|||
|
|
maxX = System.Math.Max(UMx.Max(), LMx.Max());
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if (MMx.Count() > 0)
|
|||
|
|
{
|
|||
|
|
maxX = System.Math.Max(maxX, MMx.Max());
|
|||
|
|
minX = System.Math.Min(minX, MMx.Min());
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
for (int i = 0; i < lines.Count; i++)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
C.ScatterChartSeries scatterChartSeries = new C.ScatterChartSeries();
|
|||
|
|
C.Index index = new C.Index() { Val = (UInt32Value)System.Convert.ToUInt32(4 + i) };
|
|||
|
|
C.Order order = new C.Order() { Val = (UInt32Value)System.Convert.ToUInt32(4 + 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 = minX.ToString();
|
|||
|
|
|
|||
|
|
numericPoint25.Append(numericValue32);
|
|||
|
|
|
|||
|
|
C.NumericPoint numericPoint26 = new C.NumericPoint() { Index = (UInt32Value)1U };
|
|||
|
|
C.NumericValue numericValue33 = new C.NumericValue();
|
|||
|
|
numericValue33.Text = maxX.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 = false };
|
|||
|
|
|
|||
|
|
scatterChartSeries.Append(index);
|
|||
|
|
scatterChartSeries.Append(order);
|
|||
|
|
scatterChartSeries.Append(seriesText);
|
|||
|
|
scatterChartSeries.Append(chartShapeProperties);
|
|||
|
|
scatterChartSeries.Append(marker);
|
|||
|
|
scatterChartSeries.Append(xValues);
|
|||
|
|
scatterChartSeries.Append(yValues);
|
|||
|
|
scatterChartSeries.Append(smooth);
|
|||
|
|
scatterChart1.Append(scatterChartSeries);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
scatterChart1.Append(axisId1);
|
|||
|
|
scatterChart1.Append(axisId2);
|
|||
|
|
|
|||
|
|
C.ValueAxis valueAxis1 = new C.ValueAxis();
|
|||
|
|
C.AxisId axisId3 = new C.AxisId() { Val = (UInt32Value)41454976U };
|
|||
|
|
|
|||
|
|
C.Scaling scaling1 = new C.Scaling();
|
|||
|
|
C.Orientation orientation1 = new C.Orientation() { Val = C.OrientationValues.MinMax };
|
|||
|
|
|
|||
|
|
scaling1.Append(orientation1);
|
|||
|
|
C.AxisPosition axisPosition1 = new C.AxisPosition() { Val = C.AxisPositionValues.Bottom };
|
|||
|
|
C.MajorGridlines majorGridlines1 = new C.MajorGridlines();
|
|||
|
|
|
|||
|
|
C.Title title1 = new C.Title();
|
|||
|
|
|
|||
|
|
C.ChartText chartText1 = new C.ChartText();
|
|||
|
|
|
|||
|
|
C.RichText richText1 = new C.RichText();
|
|||
|
|
A.BodyProperties bodyProperties1 = new A.BodyProperties();
|
|||
|
|
A.ListStyle listStyle1 = new A.ListStyle();
|
|||
|
|
|
|||
|
|
A.Paragraph paragraph1 = new A.Paragraph();
|
|||
|
|
|
|||
|
|
A.ParagraphProperties paragraphProperties1 = new A.ParagraphProperties();
|
|||
|
|
A.DefaultRunProperties defaultRunProperties1 = new A.DefaultRunProperties();
|
|||
|
|
|
|||
|
|
paragraphProperties1.Append(defaultRunProperties1);
|
|||
|
|
|
|||
|
|
A.Run run1 = new A.Run();
|
|||
|
|
A.RunProperties runProperties1 = new A.RunProperties() { Language = "en-US" };
|
|||
|
|
A.Text text1 = new A.Text();
|
|||
|
|
text1.Text = string.Format("Time ({0})",timeUnits);
|
|||
|
|
|
|||
|
|
run1.Append(runProperties1);
|
|||
|
|
run1.Append(text1);
|
|||
|
|
|
|||
|
|
paragraph1.Append(paragraphProperties1);
|
|||
|
|
paragraph1.Append(run1);
|
|||
|
|
|
|||
|
|
richText1.Append(bodyProperties1);
|
|||
|
|
richText1.Append(listStyle1);
|
|||
|
|
richText1.Append(paragraph1);
|
|||
|
|
|
|||
|
|
chartText1.Append(richText1);
|
|||
|
|
C.Layout layout2 = new C.Layout();
|
|||
|
|
|
|||
|
|
title1.Append(chartText1);
|
|||
|
|
title1.Append(layout2);
|
|||
|
|
C.NumberingFormat numberingFormat1 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true };
|
|||
|
|
C.MajorTickMark majorTickMark1 = new C.MajorTickMark() { Val = C.TickMarkValues.None };
|
|||
|
|
C.TickLabelPosition tickLabelPosition1 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low };
|
|||
|
|
|
|||
|
|
C.ChartShapeProperties chartShapeProperties1 = new C.ChartShapeProperties();
|
|||
|
|
|
|||
|
|
A.Outline outline1 = new A.Outline() { Width = 19050 };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill1 = new A.SolidFill();
|
|||
|
|
A.SchemeColor schemeColor1 = new A.SchemeColor() { Val = A.SchemeColorValues.Text1 };
|
|||
|
|
|
|||
|
|
solidFill1.Append(schemeColor1);
|
|||
|
|
|
|||
|
|
outline1.Append(solidFill1);
|
|||
|
|
|
|||
|
|
chartShapeProperties1.Append(outline1);
|
|||
|
|
C.CrossingAxis crossingAxis1 = new C.CrossingAxis() { Val = (UInt32Value)41465344U };
|
|||
|
|
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(axisPosition1);
|
|||
|
|
valueAxis1.Append(majorGridlines1);
|
|||
|
|
valueAxis1.Append(title1);
|
|||
|
|
valueAxis1.Append(numberingFormat1);
|
|||
|
|
valueAxis1.Append(majorTickMark1);
|
|||
|
|
valueAxis1.Append(tickLabelPosition1);
|
|||
|
|
valueAxis1.Append(chartShapeProperties1);
|
|||
|
|
valueAxis1.Append(crossingAxis1);
|
|||
|
|
valueAxis1.Append(crosses1);
|
|||
|
|
valueAxis1.Append(crossBetween1);
|
|||
|
|
|
|||
|
|
C.ValueAxis valueAxis2 = new C.ValueAxis();
|
|||
|
|
C.AxisId axisId4 = new C.AxisId() { Val = (UInt32Value)41465344U };
|
|||
|
|
|
|||
|
|
C.Scaling scaling2 = new C.Scaling();
|
|||
|
|
C.Orientation orientation2 = new C.Orientation() { Val = C.OrientationValues.MinMax };
|
|||
|
|
|
|||
|
|
if (null != rangeMin)
|
|||
|
|
{
|
|||
|
|
C.MinAxisValue min = new C.MinAxisValue() { Val = (double)rangeMin };
|
|||
|
|
scaling2.Append(min);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if (null != rangeMax)
|
|||
|
|
{
|
|||
|
|
C.MaxAxisValue max = new C.MaxAxisValue() { Val = (double)rangeMax };
|
|||
|
|
scaling2.Append(max);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
scaling2.Append(orientation2);
|
|||
|
|
C.AxisPosition axisPosition2 = new C.AxisPosition() { Val = C.AxisPositionValues.Left };
|
|||
|
|
C.MajorGridlines majorGridlines2 = new C.MajorGridlines();
|
|||
|
|
|
|||
|
|
C.MinorGridlines minorGridlines1 = new C.MinorGridlines();
|
|||
|
|
|
|||
|
|
C.ChartShapeProperties chartShapeProperties2 = new C.ChartShapeProperties();
|
|||
|
|
|
|||
|
|
A.Outline outline2 = new A.Outline(){ Width = 12700 };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill2 = new A.SolidFill();
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor2 = new A.SchemeColor() { Val = A.SchemeColorValues.Background1 };
|
|||
|
|
A.LuminanceModulation luminanceModulation1 = new A.LuminanceModulation() { Val = 85000 };
|
|||
|
|
|
|||
|
|
schemeColor2.Append(luminanceModulation1);
|
|||
|
|
|
|||
|
|
solidFill2.Append(schemeColor2);
|
|||
|
|
|
|||
|
|
outline2.Append(solidFill2);
|
|||
|
|
|
|||
|
|
chartShapeProperties2.Append(outline2);
|
|||
|
|
|
|||
|
|
minorGridlines1.Append(chartShapeProperties2);
|
|||
|
|
|
|||
|
|
C.Title title2 = new C.Title();
|
|||
|
|
|
|||
|
|
C.ChartText chartText2 = new C.ChartText();
|
|||
|
|
|
|||
|
|
C.RichText richText2 = new C.RichText();
|
|||
|
|
A.BodyProperties bodyProperties2 = new A.BodyProperties() { Rotation = -5400000, Vertical = A.TextVerticalValues.Horizontal };
|
|||
|
|
A.ListStyle listStyle2 = new A.ListStyle();
|
|||
|
|
|
|||
|
|
A.Paragraph paragraph2 = new A.Paragraph();
|
|||
|
|
|
|||
|
|
A.ParagraphProperties paragraphProperties2 = new A.ParagraphProperties();
|
|||
|
|
A.DefaultRunProperties defaultRunProperties2 = new A.DefaultRunProperties();
|
|||
|
|
|
|||
|
|
paragraphProperties2.Append(defaultRunProperties2);
|
|||
|
|
|
|||
|
|
A.Run run2 = new A.Run();
|
|||
|
|
A.RunProperties runProperties2 = new A.RunProperties() { Language = "en-US" };
|
|||
|
|
A.Text text2 = new A.Text();
|
|||
|
|
text2.Text = string.Format("Moment ({0})", momentUnits);
|
|||
|
|
|
|||
|
|
run2.Append(runProperties2);
|
|||
|
|
run2.Append(text2);
|
|||
|
|
|
|||
|
|
paragraph2.Append(paragraphProperties2);
|
|||
|
|
paragraph2.Append(run2);
|
|||
|
|
|
|||
|
|
richText2.Append(bodyProperties2);
|
|||
|
|
richText2.Append(listStyle2);
|
|||
|
|
richText2.Append(paragraph2);
|
|||
|
|
|
|||
|
|
chartText2.Append(richText2);
|
|||
|
|
C.Layout layout3 = new C.Layout();
|
|||
|
|
|
|||
|
|
title2.Append(chartText2);
|
|||
|
|
title2.Append(layout3);
|
|||
|
|
C.NumberingFormat numberingFormat2 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true };
|
|||
|
|
C.MajorTickMark majorTickMark2 = new C.MajorTickMark() { Val = C.TickMarkValues.None };
|
|||
|
|
C.TickLabelPosition tickLabelPosition2 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low };
|
|||
|
|
|
|||
|
|
C.ChartShapeProperties chartShapeProperties3 = new C.ChartShapeProperties();
|
|||
|
|
|
|||
|
|
A.Outline outline3 = new A.Outline() { Width = 19050 };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill3 = new A.SolidFill();
|
|||
|
|
A.SchemeColor schemeColor3 = new A.SchemeColor() { Val = A.SchemeColorValues.Text1 };
|
|||
|
|
|
|||
|
|
solidFill3.Append(schemeColor3);
|
|||
|
|
|
|||
|
|
outline3.Append(solidFill3);
|
|||
|
|
|
|||
|
|
chartShapeProperties3.Append(outline3);
|
|||
|
|
C.CrossingAxis crossingAxis2 = new C.CrossingAxis() { Val = (UInt32Value)41454976U };
|
|||
|
|
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(axisPosition2);
|
|||
|
|
valueAxis2.Append(majorGridlines2);
|
|||
|
|
valueAxis2.Append(minorGridlines1);
|
|||
|
|
valueAxis2.Append(title2);
|
|||
|
|
valueAxis2.Append(numberingFormat2);
|
|||
|
|
valueAxis2.Append(majorTickMark2);
|
|||
|
|
valueAxis2.Append(tickLabelPosition2);
|
|||
|
|
valueAxis2.Append(chartShapeProperties3);
|
|||
|
|
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 };
|
|||
|
|
|
|||
|
|
chart1.Append(plotArea1);
|
|||
|
|
chart1.Append(plotVisibleOnly1);
|
|||
|
|
|
|||
|
|
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(editingLanguage1);
|
|||
|
|
chartSpace1.Append(chart1);
|
|||
|
|
chartSpace1.Append(printSettings1);
|
|||
|
|
|
|||
|
|
chartPart1.ChartSpace = chartSpace1;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Generates content of chartPart2.
|
|||
|
|
private void GenerateForceChartContent(ChartPart chartPart2,
|
|||
|
|
double [] TFx, double [] TFy,
|
|||
|
|
double [] UFx, double [] UFy,
|
|||
|
|
double [] LFx, double [] LFy,
|
|||
|
|
double? rangeMin, double? rangeMax,
|
|||
|
|
string forceUnits, string timeUnits,
|
|||
|
|
string thresholds
|
|||
|
|
)
|
|||
|
|
{
|
|||
|
|
List<double> lines = new List<double>();
|
|||
|
|
|
|||
|
|
foreach (string t in thresholds.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.EditingLanguage editingLanguage2 = new C.EditingLanguage() { Val = "en-US" };
|
|||
|
|
|
|||
|
|
C.Chart chart2 = new C.Chart();
|
|||
|
|
|
|||
|
|
C.PlotArea plotArea2 = new C.PlotArea();
|
|||
|
|
C.Layout layout4 = new C.Layout();
|
|||
|
|
|
|||
|
|
C.ScatterChart scatterChart2 = new C.ScatterChart();
|
|||
|
|
C.ScatterStyle scatterStyle2 = new C.ScatterStyle() { Val = C.ScatterStyleValues.Line };
|
|||
|
|
|
|||
|
|
C.ScatterChartSeries scatterChartSeries4 = new C.ScatterChartSeries();
|
|||
|
|
C.Index index4 = new C.Index() { Val = (UInt32Value)0U };
|
|||
|
|
C.Order order4 = new C.Order() { Val = (UInt32Value)0U };
|
|||
|
|
|
|||
|
|
C.SeriesText seriesText4 = new C.SeriesText();
|
|||
|
|
C.NumericValue numericValue70 = new C.NumericValue();
|
|||
|
|
numericValue70.Text = "TF";
|
|||
|
|
|
|||
|
|
seriesText4.Append(numericValue70);
|
|||
|
|
|
|||
|
|
C.ChartShapeProperties chartShapeProperties4 = new C.ChartShapeProperties();
|
|||
|
|
|
|||
|
|
A.Outline outline4 = new A.Outline(){ Width = 12700 };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill4 = new A.SolidFill();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex1 = new A.RgbColorModelHex() { Val = "0070C0" };
|
|||
|
|
|
|||
|
|
solidFill4.Append(rgbColorModelHex1);
|
|||
|
|
|
|||
|
|
outline4.Append(solidFill4);
|
|||
|
|
|
|||
|
|
chartShapeProperties4.Append(outline4);
|
|||
|
|
|
|||
|
|
C.Marker marker4 = new C.Marker();
|
|||
|
|
C.Symbol symbol4 = new C.Symbol() { Val = C.MarkerStyleValues.None };
|
|||
|
|
|
|||
|
|
marker4.Append(symbol4);
|
|||
|
|
|
|||
|
|
C.XValues xValues4 = new C.XValues();
|
|||
|
|
|
|||
|
|
C.NumberReference numberReference7 = new C.NumberReference();
|
|||
|
|
C.Formula formula7 = new C.Formula();
|
|||
|
|
formula7.Text = string.Format("Data!$A$2:$A${0}", 1 + TFx.Length);
|
|||
|
|
|
|||
|
|
C.NumberingCache numberingCache7 = new C.NumberingCache();
|
|||
|
|
C.FormatCode formatCode7 = new C.FormatCode();
|
|||
|
|
formatCode7.Text = "General";
|
|||
|
|
C.PointCount pointCount7 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(TFx.Length) };
|
|||
|
|
|
|||
|
|
numberingCache7.Append(formatCode7);
|
|||
|
|
numberingCache7.Append(pointCount7);
|
|||
|
|
for (int i = 0; i < TFx.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = TFx[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
numberingCache7.Append(p);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
numberReference7.Append(formula7);
|
|||
|
|
numberReference7.Append(numberingCache7);
|
|||
|
|
|
|||
|
|
xValues4.Append(numberReference7);
|
|||
|
|
|
|||
|
|
C.YValues yValues4 = new C.YValues();
|
|||
|
|
|
|||
|
|
C.NumberReference numberReference8 = new C.NumberReference();
|
|||
|
|
C.Formula formula8 = new C.Formula();
|
|||
|
|
formula8.Text = string.Format("Data!$B$2:$B${0}", TFy.Length+1);
|
|||
|
|
|
|||
|
|
C.NumberingCache numberingCache8 = new C.NumberingCache();
|
|||
|
|
C.FormatCode formatCode8 = new C.FormatCode();
|
|||
|
|
formatCode8.Text = "General";
|
|||
|
|
C.PointCount pointCount8 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(TFy.Length) };
|
|||
|
|
|
|||
|
|
numberingCache8.Append(formatCode8);
|
|||
|
|
numberingCache8.Append(pointCount8);
|
|||
|
|
for (int i = 0; i < TFy.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = TFy[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
numberingCache8.Append(p);
|
|||
|
|
}
|
|||
|
|
numberReference8.Append(formula8);
|
|||
|
|
numberReference8.Append(numberingCache8);
|
|||
|
|
|
|||
|
|
yValues4.Append(numberReference8);
|
|||
|
|
C.Smooth smooth4 = new C.Smooth() { Val = false };
|
|||
|
|
|
|||
|
|
scatterChartSeries4.Append(index4);
|
|||
|
|
scatterChartSeries4.Append(order4);
|
|||
|
|
scatterChartSeries4.Append(seriesText4);
|
|||
|
|
scatterChartSeries4.Append(chartShapeProperties4);
|
|||
|
|
scatterChartSeries4.Append(marker4);
|
|||
|
|
scatterChartSeries4.Append(xValues4);
|
|||
|
|
scatterChartSeries4.Append(yValues4);
|
|||
|
|
scatterChartSeries4.Append(smooth4);
|
|||
|
|
|
|||
|
|
C.ScatterChartSeries scatterChartSeries5 = new C.ScatterChartSeries();
|
|||
|
|
C.Index index5 = new C.Index() { Val = (UInt32Value)1U };
|
|||
|
|
C.Order order5 = new C.Order() { Val = (UInt32Value)1U };
|
|||
|
|
|
|||
|
|
C.SeriesText seriesText5 = new C.SeriesText();
|
|||
|
|
C.NumericValue numericValue93 = new C.NumericValue();
|
|||
|
|
numericValue93.Text = "UF";
|
|||
|
|
|
|||
|
|
seriesText5.Append(numericValue93);
|
|||
|
|
|
|||
|
|
C.ChartShapeProperties chartShapeProperties5 = new C.ChartShapeProperties();
|
|||
|
|
|
|||
|
|
A.Outline outline5 = new A.Outline(){ Width = 12700 };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill5 = new A.SolidFill();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex2 = new A.RgbColorModelHex() { Val = "FF0000" };
|
|||
|
|
|
|||
|
|
solidFill5.Append(rgbColorModelHex2);
|
|||
|
|
|
|||
|
|
outline5.Append(solidFill5);
|
|||
|
|
|
|||
|
|
chartShapeProperties5.Append(outline5);
|
|||
|
|
|
|||
|
|
C.Marker marker5 = new C.Marker();
|
|||
|
|
C.Symbol symbol5 = new C.Symbol() { Val = C.MarkerStyleValues.None };
|
|||
|
|
|
|||
|
|
marker5.Append(symbol5);
|
|||
|
|
|
|||
|
|
C.XValues xValues5 = new C.XValues();
|
|||
|
|
|
|||
|
|
C.NumberReference numberReference9 = new C.NumberReference();
|
|||
|
|
C.Formula formula9 = new C.Formula();
|
|||
|
|
formula9.Text = string.Format("Data!$C$2:$C${0}", 1+UFx.Length);
|
|||
|
|
|
|||
|
|
C.NumberingCache numberingCache9 = new C.NumberingCache();
|
|||
|
|
C.FormatCode formatCode9 = new C.FormatCode();
|
|||
|
|
formatCode9.Text = "General";
|
|||
|
|
C.PointCount pointCount9 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(UFx.Length) };
|
|||
|
|
|
|||
|
|
numberingCache9.Append(formatCode9);
|
|||
|
|
numberingCache9.Append(pointCount9);
|
|||
|
|
|
|||
|
|
for (int i = 0; i < UFx.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = UFx[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
numberingCache9.Append(p);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
numberReference9.Append(formula9);
|
|||
|
|
numberReference9.Append(numberingCache9);
|
|||
|
|
|
|||
|
|
xValues5.Append(numberReference9);
|
|||
|
|
|
|||
|
|
C.YValues yValues5 = new C.YValues();
|
|||
|
|
|
|||
|
|
C.NumberReference numberReference10 = new C.NumberReference();
|
|||
|
|
C.Formula formula10 = new C.Formula();
|
|||
|
|
formula10.Text = string.Format("Data!$D$2:$D${0}", 1 + UFy.Length);
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
C.NumberingCache numberingCache10 = new C.NumberingCache();
|
|||
|
|
C.FormatCode formatCode10 = new C.FormatCode();
|
|||
|
|
formatCode10.Text = "General";
|
|||
|
|
C.PointCount pointCount10 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(UFy.Length) };
|
|||
|
|
|
|||
|
|
numberingCache10.Append(formatCode10);
|
|||
|
|
numberingCache10.Append(pointCount10);
|
|||
|
|
|
|||
|
|
for (int i = 0; i < UFy.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = UFy[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
numberingCache9.Append(p);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
numberReference10.Append(formula10);
|
|||
|
|
numberReference10.Append(numberingCache10);
|
|||
|
|
|
|||
|
|
yValues5.Append(numberReference10);
|
|||
|
|
C.Smooth smooth5 = new C.Smooth() { Val = false };
|
|||
|
|
|
|||
|
|
scatterChartSeries5.Append(index5);
|
|||
|
|
scatterChartSeries5.Append(order5);
|
|||
|
|
scatterChartSeries5.Append(seriesText5);
|
|||
|
|
scatterChartSeries5.Append(chartShapeProperties5);
|
|||
|
|
scatterChartSeries5.Append(marker5);
|
|||
|
|
scatterChartSeries5.Append(xValues5);
|
|||
|
|
scatterChartSeries5.Append(yValues5);
|
|||
|
|
scatterChartSeries5.Append(smooth5);
|
|||
|
|
|
|||
|
|
C.ScatterChartSeries scatterChartSeries6 = new C.ScatterChartSeries();
|
|||
|
|
C.Index index6 = new C.Index() { Val = (UInt32Value)2U };
|
|||
|
|
C.Order order6 = new C.Order() { Val = (UInt32Value)2U };
|
|||
|
|
|
|||
|
|
C.SeriesText seriesText6 = new C.SeriesText();
|
|||
|
|
C.NumericValue numericValue116 = new C.NumericValue();
|
|||
|
|
numericValue116.Text = "LF";
|
|||
|
|
|
|||
|
|
seriesText6.Append(numericValue116);
|
|||
|
|
|
|||
|
|
C.ChartShapeProperties chartShapeProperties6 = new C.ChartShapeProperties();
|
|||
|
|
|
|||
|
|
A.Outline outline6 = new A.Outline(){ Width = 12700 };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill6 = new A.SolidFill();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex3 = new A.RgbColorModelHex() { Val = "00B050" };
|
|||
|
|
|
|||
|
|
solidFill6.Append(rgbColorModelHex3);
|
|||
|
|
|
|||
|
|
outline6.Append(solidFill6);
|
|||
|
|
|
|||
|
|
chartShapeProperties6.Append(outline6);
|
|||
|
|
|
|||
|
|
C.Marker marker6 = new C.Marker();
|
|||
|
|
C.Symbol symbol6 = new C.Symbol() { Val = C.MarkerStyleValues.None };
|
|||
|
|
|
|||
|
|
marker6.Append(symbol6);
|
|||
|
|
|
|||
|
|
C.XValues xValues6 = new C.XValues();
|
|||
|
|
|
|||
|
|
C.NumberReference numberReference11 = new C.NumberReference();
|
|||
|
|
C.Formula formula11 = new C.Formula();
|
|||
|
|
formula11.Text = string.Format("Data!$E$2:$E${0}", 1+LFx.Length);
|
|||
|
|
|
|||
|
|
C.NumberingCache numberingCache11 = new C.NumberingCache();
|
|||
|
|
C.FormatCode formatCode11 = new C.FormatCode();
|
|||
|
|
formatCode11.Text = "General";
|
|||
|
|
C.PointCount pointCount11 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(LFx.Length)};
|
|||
|
|
|
|||
|
|
numberingCache11.Append(formatCode11);
|
|||
|
|
numberingCache11.Append(pointCount11);
|
|||
|
|
for (int i = 0; i < LFx.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = LFx[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
numberingCache11.Append(p);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
numberReference11.Append(formula11);
|
|||
|
|
numberReference11.Append(numberingCache11);
|
|||
|
|
|
|||
|
|
xValues6.Append(numberReference11);
|
|||
|
|
|
|||
|
|
C.YValues yValues6 = new C.YValues();
|
|||
|
|
|
|||
|
|
C.NumberReference numberReference12 = new C.NumberReference();
|
|||
|
|
C.Formula formula12 = new C.Formula();
|
|||
|
|
formula12.Text = string.Format("Data!$F$2:$F${0}",1+LFy.Length);
|
|||
|
|
|
|||
|
|
C.NumberingCache numberingCache12 = new C.NumberingCache();
|
|||
|
|
C.FormatCode formatCode12 = new C.FormatCode();
|
|||
|
|
formatCode12.Text = "General";
|
|||
|
|
C.PointCount pointCount12 = new C.PointCount() { Val = (UInt32Value)System.Convert.ToUInt32(LFy.Length) };
|
|||
|
|
|
|||
|
|
numberingCache12.Append(formatCode12);
|
|||
|
|
numberingCache12.Append(pointCount12);
|
|||
|
|
for (int i = 0; i < LFy.Length; i++)
|
|||
|
|
{
|
|||
|
|
C.NumericPoint p = new C.NumericPoint() { Index = (UInt32Value)System.Convert.ToUInt32(i) };
|
|||
|
|
C.NumericValue v = new C.NumericValue() { Text = LFy[i].ToString() };
|
|||
|
|
p.Append(v);
|
|||
|
|
numberingCache12.Append(p);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
numberReference12.Append(formula12);
|
|||
|
|
numberReference12.Append(numberingCache12);
|
|||
|
|
|
|||
|
|
yValues6.Append(numberReference12);
|
|||
|
|
C.Smooth smooth6 = new C.Smooth() { Val = false };
|
|||
|
|
|
|||
|
|
scatterChartSeries6.Append(index6);
|
|||
|
|
scatterChartSeries6.Append(order6);
|
|||
|
|
scatterChartSeries6.Append(seriesText6);
|
|||
|
|
scatterChartSeries6.Append(chartShapeProperties6);
|
|||
|
|
scatterChartSeries6.Append(marker6);
|
|||
|
|
scatterChartSeries6.Append(xValues6);
|
|||
|
|
scatterChartSeries6.Append(yValues6);
|
|||
|
|
scatterChartSeries6.Append(smooth6);
|
|||
|
|
C.AxisId axisId5 = new C.AxisId() { Val = (UInt32Value)41332096U };
|
|||
|
|
C.AxisId axisId6 = new C.AxisId() { Val = (UInt32Value)41342464U };
|
|||
|
|
|
|||
|
|
scatterChart2.Append(scatterStyle2);
|
|||
|
|
scatterChart2.Append(scatterChartSeries4);
|
|||
|
|
scatterChart2.Append(scatterChartSeries5);
|
|||
|
|
scatterChart2.Append(scatterChartSeries6);
|
|||
|
|
|
|||
|
|
double minX = 0D;
|
|||
|
|
double maxX = 0D;
|
|||
|
|
|
|||
|
|
if (UFx.Count() > 0 && LFx.Count() > 0)
|
|||
|
|
{
|
|||
|
|
maxX = System.Math.Max(UFx.Max(), LFx.Max());
|
|||
|
|
minX = System.Math.Min(UFx.Min(), LFx.Min());
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
for (int i = 0; i < lines.Count; i++)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
C.ScatterChartSeries scatterChartSeries = new C.ScatterChartSeries();
|
|||
|
|
C.Index index = new C.Index() { Val = (UInt32Value)System.Convert.ToUInt32(4 + i) };
|
|||
|
|
C.Order order = new C.Order() { Val = (UInt32Value)System.Convert.ToUInt32(4 + 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 = minX.ToString();
|
|||
|
|
|
|||
|
|
numericPoint25.Append(numericValue32);
|
|||
|
|
|
|||
|
|
C.NumericPoint numericPoint26 = new C.NumericPoint() { Index = (UInt32Value)1U };
|
|||
|
|
C.NumericValue numericValue33 = new C.NumericValue();
|
|||
|
|
numericValue33.Text = maxX.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 = false };
|
|||
|
|
|
|||
|
|
scatterChartSeries.Append(index);
|
|||
|
|
scatterChartSeries.Append(order);
|
|||
|
|
scatterChartSeries.Append(seriesText);
|
|||
|
|
scatterChartSeries.Append(chartShapeProperties);
|
|||
|
|
scatterChartSeries.Append(marker);
|
|||
|
|
scatterChartSeries.Append(xValues);
|
|||
|
|
scatterChartSeries.Append(yValues);
|
|||
|
|
scatterChartSeries.Append(smooth);
|
|||
|
|
scatterChart2.Append(scatterChartSeries);
|
|||
|
|
}
|
|||
|
|
scatterChart2.Append(axisId5);
|
|||
|
|
scatterChart2.Append(axisId6);
|
|||
|
|
|
|||
|
|
C.ValueAxis valueAxis3 = new C.ValueAxis();
|
|||
|
|
C.AxisId axisId7 = new C.AxisId() { Val = (UInt32Value)41332096U };
|
|||
|
|
|
|||
|
|
C.Scaling scaling3 = new C.Scaling();
|
|||
|
|
C.Orientation orientation3 = new C.Orientation() { Val = C.OrientationValues.MinMax };
|
|||
|
|
|
|||
|
|
scaling3.Append(orientation3);
|
|||
|
|
C.AxisPosition axisPosition3 = new C.AxisPosition() { Val = C.AxisPositionValues.Bottom };
|
|||
|
|
C.MajorGridlines majorGridlines3 = new C.MajorGridlines();
|
|||
|
|
|
|||
|
|
C.Title title3 = new C.Title();
|
|||
|
|
|
|||
|
|
C.ChartText chartText3 = new C.ChartText();
|
|||
|
|
|
|||
|
|
C.RichText richText3 = new C.RichText();
|
|||
|
|
A.BodyProperties bodyProperties3 = new A.BodyProperties();
|
|||
|
|
A.ListStyle listStyle3 = new A.ListStyle();
|
|||
|
|
|
|||
|
|
A.Paragraph paragraph3 = new A.Paragraph();
|
|||
|
|
|
|||
|
|
A.ParagraphProperties paragraphProperties3 = new A.ParagraphProperties();
|
|||
|
|
A.DefaultRunProperties defaultRunProperties3 = new A.DefaultRunProperties();
|
|||
|
|
|
|||
|
|
paragraphProperties3.Append(defaultRunProperties3);
|
|||
|
|
|
|||
|
|
A.Run run3 = new A.Run();
|
|||
|
|
A.RunProperties runProperties3 = new A.RunProperties() { Language = "en-US" };
|
|||
|
|
A.Text text3 = new A.Text();
|
|||
|
|
text3.Text = string.Format("Time ({0})", timeUnits);
|
|||
|
|
|
|||
|
|
run3.Append(runProperties3);
|
|||
|
|
run3.Append(text3);
|
|||
|
|
|
|||
|
|
paragraph3.Append(paragraphProperties3);
|
|||
|
|
paragraph3.Append(run3);
|
|||
|
|
|
|||
|
|
richText3.Append(bodyProperties3);
|
|||
|
|
richText3.Append(listStyle3);
|
|||
|
|
richText3.Append(paragraph3);
|
|||
|
|
|
|||
|
|
chartText3.Append(richText3);
|
|||
|
|
C.Layout layout5 = new C.Layout();
|
|||
|
|
|
|||
|
|
title3.Append(chartText3);
|
|||
|
|
title3.Append(layout5);
|
|||
|
|
C.NumberingFormat numberingFormat3 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true };
|
|||
|
|
C.TickLabelPosition tickLabelPosition3 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low };
|
|||
|
|
|
|||
|
|
C.ChartShapeProperties chartShapeProperties7 = new C.ChartShapeProperties();
|
|||
|
|
|
|||
|
|
A.Outline outline7 = new A.Outline() { Width = 19050 };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill7 = new A.SolidFill();
|
|||
|
|
A.SchemeColor schemeColor4 = new A.SchemeColor() { Val = A.SchemeColorValues.Text1 };
|
|||
|
|
|
|||
|
|
solidFill7.Append(schemeColor4);
|
|||
|
|
|
|||
|
|
outline7.Append(solidFill7);
|
|||
|
|
|
|||
|
|
chartShapeProperties7.Append(outline7);
|
|||
|
|
C.CrossingAxis crossingAxis3 = new C.CrossingAxis() { Val = (UInt32Value)41342464U };
|
|||
|
|
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(axisPosition3);
|
|||
|
|
valueAxis3.Append(majorGridlines3);
|
|||
|
|
valueAxis3.Append(title3);
|
|||
|
|
valueAxis3.Append(numberingFormat3);
|
|||
|
|
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)41342464U };
|
|||
|
|
|
|||
|
|
C.Scaling scaling4 = new C.Scaling();
|
|||
|
|
C.Orientation orientation4 = new C.Orientation() { Val = C.OrientationValues.MinMax };
|
|||
|
|
|
|||
|
|
if (null != rangeMin)
|
|||
|
|
{
|
|||
|
|
C.MinAxisValue min = new C.MinAxisValue() { Val = (double)rangeMin };
|
|||
|
|
scaling4.Append(min);
|
|||
|
|
}
|
|||
|
|
if (null != rangeMax)
|
|||
|
|
{
|
|||
|
|
C.MaxAxisValue max = new C.MaxAxisValue() { Val = (double)rangeMax };
|
|||
|
|
scaling4.Append(max);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
scaling4.Append(orientation4);
|
|||
|
|
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 };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill8 = new A.SolidFill();
|
|||
|
|
A.SchemeColor schemeColor5 = new A.SchemeColor() { Val = A.SchemeColorValues.Text1 };
|
|||
|
|
|
|||
|
|
solidFill8.Append(schemeColor5);
|
|||
|
|
|
|||
|
|
outline8.Append(solidFill8);
|
|||
|
|
|
|||
|
|
chartShapeProperties8.Append(outline8);
|
|||
|
|
|
|||
|
|
majorGridlines4.Append(chartShapeProperties8);
|
|||
|
|
|
|||
|
|
C.MinorGridlines minorGridlines2 = new C.MinorGridlines();
|
|||
|
|
|
|||
|
|
C.ChartShapeProperties chartShapeProperties9 = new C.ChartShapeProperties();
|
|||
|
|
|
|||
|
|
A.Outline outline9 = new A.Outline(){ Width = 12700 };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill9 = new A.SolidFill();
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor6 = new A.SchemeColor() { Val = A.SchemeColorValues.Background1 };
|
|||
|
|
A.LuminanceModulation luminanceModulation2 = new A.LuminanceModulation() { Val = 75000 };
|
|||
|
|
|
|||
|
|
schemeColor6.Append(luminanceModulation2);
|
|||
|
|
|
|||
|
|
solidFill9.Append(schemeColor6);
|
|||
|
|
|
|||
|
|
outline9.Append(solidFill9);
|
|||
|
|
|
|||
|
|
chartShapeProperties9.Append(outline9);
|
|||
|
|
|
|||
|
|
minorGridlines2.Append(chartShapeProperties9);
|
|||
|
|
|
|||
|
|
C.Title title4 = new C.Title();
|
|||
|
|
|
|||
|
|
C.ChartText chartText4 = new C.ChartText();
|
|||
|
|
|
|||
|
|
C.RichText richText4 = new C.RichText();
|
|||
|
|
A.BodyProperties bodyProperties4 = new A.BodyProperties() { Rotation = -5400000, Vertical = A.TextVerticalValues.Horizontal };
|
|||
|
|
A.ListStyle listStyle4 = new A.ListStyle();
|
|||
|
|
|
|||
|
|
A.Paragraph paragraph4 = new A.Paragraph();
|
|||
|
|
|
|||
|
|
A.ParagraphProperties paragraphProperties4 = new A.ParagraphProperties();
|
|||
|
|
A.DefaultRunProperties defaultRunProperties4 = new A.DefaultRunProperties();
|
|||
|
|
|
|||
|
|
paragraphProperties4.Append(defaultRunProperties4);
|
|||
|
|
|
|||
|
|
A.Run run4 = new A.Run();
|
|||
|
|
A.RunProperties runProperties4 = new A.RunProperties() { Language = "en-US" };
|
|||
|
|
A.Text text4 = new A.Text();
|
|||
|
|
text4.Text = string.Format("Force ({0})",forceUnits);
|
|||
|
|
|
|||
|
|
run4.Append(runProperties4);
|
|||
|
|
run4.Append(text4);
|
|||
|
|
|
|||
|
|
paragraph4.Append(paragraphProperties4);
|
|||
|
|
paragraph4.Append(run4);
|
|||
|
|
|
|||
|
|
richText4.Append(bodyProperties4);
|
|||
|
|
richText4.Append(listStyle4);
|
|||
|
|
richText4.Append(paragraph4);
|
|||
|
|
|
|||
|
|
chartText4.Append(richText4);
|
|||
|
|
C.Layout layout6 = new C.Layout();
|
|||
|
|
|
|||
|
|
title4.Append(chartText4);
|
|||
|
|
title4.Append(layout6);
|
|||
|
|
C.NumberingFormat numberingFormat4 = new C.NumberingFormat() { FormatCode = "General", SourceLinked = true };
|
|||
|
|
C.MajorTickMark majorTickMark3 = new C.MajorTickMark() { Val = C.TickMarkValues.None };
|
|||
|
|
C.TickLabelPosition tickLabelPosition4 = new C.TickLabelPosition() { Val = C.TickLabelPositionValues.Low };
|
|||
|
|
|
|||
|
|
C.ChartShapeProperties chartShapeProperties10 = new C.ChartShapeProperties();
|
|||
|
|
|
|||
|
|
A.Outline outline10 = new A.Outline() { Width = 19050 };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill10 = new A.SolidFill();
|
|||
|
|
A.SchemeColor schemeColor7 = new A.SchemeColor() { Val = A.SchemeColorValues.Text1 };
|
|||
|
|
|
|||
|
|
solidFill10.Append(schemeColor7);
|
|||
|
|
|
|||
|
|
outline10.Append(solidFill10);
|
|||
|
|
|
|||
|
|
chartShapeProperties10.Append(outline10);
|
|||
|
|
C.CrossingAxis crossingAxis4 = new C.CrossingAxis() { Val = (UInt32Value)41332096U };
|
|||
|
|
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(axisPosition4);
|
|||
|
|
valueAxis4.Append(majorGridlines4);
|
|||
|
|
valueAxis4.Append(minorGridlines2);
|
|||
|
|
valueAxis4.Append(title4);
|
|||
|
|
valueAxis4.Append(numberingFormat4);
|
|||
|
|
valueAxis4.Append(majorTickMark3);
|
|||
|
|
valueAxis4.Append(tickLabelPosition4);
|
|||
|
|
valueAxis4.Append(chartShapeProperties10);
|
|||
|
|
valueAxis4.Append(crossingAxis4);
|
|||
|
|
valueAxis4.Append(crosses4);
|
|||
|
|
valueAxis4.Append(crossBetween4);
|
|||
|
|
|
|||
|
|
plotArea2.Append(layout4);
|
|||
|
|
plotArea2.Append(scatterChart2);
|
|||
|
|
plotArea2.Append(valueAxis3);
|
|||
|
|
plotArea2.Append(valueAxis4);
|
|||
|
|
C.PlotVisibleOnly plotVisibleOnly2 = new C.PlotVisibleOnly() { Val = true };
|
|||
|
|
|
|||
|
|
chart2.Append(plotArea2);
|
|||
|
|
chart2.Append(plotVisibleOnly2);
|
|||
|
|
|
|||
|
|
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(editingLanguage2);
|
|||
|
|
chartSpace2.Append(chart2);
|
|||
|
|
chartSpace2.Append(printSettings2);
|
|||
|
|
|
|||
|
|
chartPart2.ChartSpace = chartSpace2;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Generates content of spreadsheetPrinterSettingsPart1.
|
|||
|
|
private void GenerateSpreadsheetPrinterSettingsPart1Content(SpreadsheetPrinterSettingsPart spreadsheetPrinterSettingsPart1)
|
|||
|
|
{
|
|||
|
|
System.IO.Stream data = GetBinaryDataStream(spreadsheetPrinterSettingsPart1Data);
|
|||
|
|
spreadsheetPrinterSettingsPart1.FeedData(data);
|
|||
|
|
data.Close();
|
|||
|
|
}
|
|||
|
|
private Row InsertBlankRow2(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)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("B{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("C{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("D{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("E{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("F{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("G{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("H{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("I{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("J{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("K{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("L{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("M{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("N{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("O{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("P{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("Q{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("R{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("S{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("T{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("U{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("V{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("W{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("X{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("Y{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("Z{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("AA{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("AB{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("AC{0}",row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("AD{0}", row), StyleIndex = (UInt32Value)2U });
|
|||
|
|
return r;
|
|||
|
|
}
|
|||
|
|
private Row InsertBlankRow3(uint idx)
|
|||
|
|
{
|
|||
|
|
Row r = new Row() { RowIndex = (UInt32Value)idx, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("A{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("B{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("C{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("D{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("E{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("F{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("G{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("H{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("I{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("J{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("K{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("L{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("M{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("N{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = string.Format("O{0}",idx), StyleIndex = (UInt32Value)2U });
|
|||
|
|
return r;
|
|||
|
|
}
|
|||
|
|
// Generates content of worksheetPart3.
|
|||
|
|
private void GenerateTopsheetContent(WorksheetPart worksheetPart3,
|
|||
|
|
string testRefNumber,
|
|||
|
|
string testTimeInfo,
|
|||
|
|
string carMaker,
|
|||
|
|
string carModel,
|
|||
|
|
string testTemperature,
|
|||
|
|
string measuringPoint,
|
|||
|
|
string collisionSpeed,
|
|||
|
|
string impactorId,
|
|||
|
|
string impactorType,
|
|||
|
|
string studyPersonnel,
|
|||
|
|
string and1,
|
|||
|
|
string and2,
|
|||
|
|
string testCFC,
|
|||
|
|
string forceUnits,
|
|||
|
|
string momentUnits,
|
|||
|
|
string timeUnits,
|
|||
|
|
string impactorWeight)
|
|||
|
|
{
|
|||
|
|
Worksheet worksheet3 = new Worksheet();
|
|||
|
|
worksheet3.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
|
|||
|
|
SheetDimension sheetDimension3 = new SheetDimension() { Reference = "A1:AD53" };
|
|||
|
|
|
|||
|
|
SheetViews sheetViews3 = new SheetViews();
|
|||
|
|
SheetView sheetView3 = new SheetView() { WorkbookViewId = (UInt32Value)0U };
|
|||
|
|
Selection selection2 = new Selection() { ActiveCell = "A1", SequenceOfReferences = new ListValue<StringValue>() { InnerText = "A1" } };
|
|||
|
|
|
|||
|
|
sheetView3.Append(selection2);
|
|||
|
|
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)1U };
|
|||
|
|
|
|||
|
|
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 };
|
|||
|
|
r.Append(new Cell() { CellReference = "A1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P1", (UInt32Value)7U, "UPR Leg"));
|
|||
|
|
r.Append(new Cell() { CellReference = "Q1", StyleIndex = (UInt32Value)8U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R1", StyleIndex = (UInt32Value)9U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "U1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "V1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD1", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)2U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P2", (UInt32Value)10U, "TEST"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q2", StyleIndex = (UInt32Value)11U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R2", StyleIndex = (UInt32Value)12U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "U2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "V2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD2", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
for (uint i = 3U; i < 6; i++)
|
|||
|
|
{
|
|||
|
|
sheetData3.Append(InsertBlankRow2(i));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)6U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P6", (UInt32Value)13U, "試験NO"));
|
|||
|
|
AddCollectionReference("試験NO", "U6");
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q6", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R6", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S6", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U6", (UInt32Value)19U, testRefNumber));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V6", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W6", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X6", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y6", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z6", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA6", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB6", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD6", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
sheetData3.Append(InsertBlankRow2(7U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)8U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P8", (UInt32Value)13U, "試験実施日"));
|
|||
|
|
AddCollectionReference("試験実施日", "U8");
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q8", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R8", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S8", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U8", (UInt32Value)19U, testTimeInfo));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V8", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W8", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X8", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y8", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z8", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA8", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB8", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD8", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(9U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)10U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P10", (UInt32Value)13U, "車名"));
|
|||
|
|
AddCollectionReference("車名", "U10");
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q10", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R10", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S10", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U10", (UInt32Value)19U, carMaker));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V10", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W10", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X10", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y10", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z10", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA10", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB10", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD10", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(11U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)12U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P12", 13U, "型式"));
|
|||
|
|
AddCollectionReference("型式", "U12");
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q12", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R12", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S12", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U12", (UInt32Value)19U, carModel));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V12", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W12", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X12", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y12", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z12", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA12", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB12", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD12", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(13U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)14U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
AddCollectionReference("試験温度", "U14");
|
|||
|
|
r.Append(CreateStylizedTextCell("P14", (UInt32Value)13U, "試験温度"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q14", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R14", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S14", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U14", (UInt32Value)19U, testTemperature));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V14", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W14", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X14", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y14", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z14", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA14", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB14", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD14", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(15U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)16U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P16", (UInt32Value)13U, "測定点"));
|
|||
|
|
AddCollectionReference("測定点", "U16");
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q16", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R16", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S16", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U16", (UInt32Value)19U, measuringPoint));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V16", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W16", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X16", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y16", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z16", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA16", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB16", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD16", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(17U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)18U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P18", (UInt32Value)13U, "衝突速度"));
|
|||
|
|
AddCollectionReference("衝突速度", "U18");
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q18", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R18", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S18", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U18", (UInt32Value)19U, collisionSpeed));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V18", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W18", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X18", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y18", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z18", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA18", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB18", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD18", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(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)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("C20", (UInt32Value)5U, "評価部位"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "D20", StyleIndex = (UInt32Value)6U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("G20", (UInt32Value)7U, "UPR Leg"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "H20", StyleIndex = (UInt32Value)8U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I20", StyleIndex = (UInt32Value)9U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P20", (UInt32Value)13U, "インパクタID"));
|
|||
|
|
AddCollectionReference("インパクタID", "U20");
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q20", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R20", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S20", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U20", (UInt32Value)19U, impactorId));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V20", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W20", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X20", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y20", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z20", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA20", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB20", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD20", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(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)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("C22", (UInt32Value)5U, "種類"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "D22", StyleIndex = (UInt32Value)6U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("G22", (UInt32Value)10U, "TEST"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "H22", StyleIndex = (UInt32Value)11U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I22", StyleIndex = (UInt32Value)12U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P22", (UInt32Value)13U, "インパクタ種類"));
|
|||
|
|
AddCollectionReference("インパクタ種類", "U22");
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q22", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R22", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S22", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U22", (UInt32Value)19U, impactorType));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V22", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W22", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X22", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y22", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z22", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA22", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB22", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD22", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(23U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)24U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
AddCollectionReference("インパクタ重量", "U24");
|
|||
|
|
r.Append(CreateStylizedTextCell("P24", (UInt32Value)13U, "インパクタ重量"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q24", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R24", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S24", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U24", (UInt32Value)19U, impactorWeight));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V24", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W24", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X24", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y24", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z24", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA24", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB24", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD24", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(25U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)26U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P26", (UInt32Value)13U, "試験担当者"));
|
|||
|
|
AddCollectionReference("試験担当者", "U26");
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q26", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R26", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S26", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U26", (UInt32Value)19U, studyPersonnel));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V26", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W26", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X26", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y26", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z26", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA26", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB26", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD26", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(27U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)28U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("Q28", (UInt32Value)13U, "予備1"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "R28", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U28", (UInt32Value)19U, and1));
|
|||
|
|
AddCollectionReference("予備1", "U28");
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V28", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W28", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X28", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y28", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z28", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA28", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB28", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD28", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(29U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)30U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "P30", StyleIndex = (UInt32Value)3U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("Q30", (UInt32Value)13U, "予備2"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "R30", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U30", (UInt32Value)19U, and2));
|
|||
|
|
AddCollectionReference("予備2", "U30");
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V30", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W30", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X30", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y30", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z30", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA30", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB30", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD30", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(31U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)32U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P32", (UInt32Value)13U, "選択自動表示項目"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q32", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R32", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S32", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "U32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "V32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD32", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)33U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P33", (UInt32Value)13U, "周波数クラス"));
|
|||
|
|
AddCollectionReference("周波数クラス", "U33");
|
|||
|
|
r.Append(new Cell() { CellReference = "Q33", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R33", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S33", StyleIndex = (UInt32Value)14U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U33", (UInt32Value)19U, testCFC));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V33", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W33", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X33", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y33", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z33", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA33", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB33", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD33", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(34U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)35U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P35", (UInt32Value)15U, "UNIT"));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "Q35", StyleIndex = (UInt32Value)15U });
|
|||
|
|
r.Append(new Cell() { CellReference = "R35", StyleIndex = (UInt32Value)15U });
|
|||
|
|
r.Append(new Cell() { CellReference = "S35", StyleIndex = (UInt32Value)15U });
|
|||
|
|
r.Append(new Cell() { CellReference = "T35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "U35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "V35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD35", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)36U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P36", (UInt32Value)16U, "Force"));
|
|||
|
|
|
|||
|
|
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)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U36", (UInt32Value)19U, forceUnits));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V36", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W36", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X36", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y36", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z36", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA36", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB36", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD36", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(37U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)38U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P38", (UInt32Value)16U, "Moment"));
|
|||
|
|
|
|||
|
|
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)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U38", (UInt32Value)19U, momentUnits));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V38", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W38", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X38", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y38", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z38", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA38", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB38", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD38", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
sheetData3.Append(InsertBlankRow2(39U));
|
|||
|
|
|
|||
|
|
r = new Row() { RowIndex = (UInt32Value)40U, Spans = new ListValue<StringValue>() { InnerText = "1:30" }, Height = 14.25D, CustomHeight = true, ThickBot = true };
|
|||
|
|
r.Append(new Cell() { CellReference = "A40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "B40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "C40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "D40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "E40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "F40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "G40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "H40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "I40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "J40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "K40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "L40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "M40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "N40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "O40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("P40", (UInt32Value)16U, "Time"));
|
|||
|
|
|
|||
|
|
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)2U });
|
|||
|
|
|
|||
|
|
r.Append(CreateStylizedTextCell("U40", (UInt32Value)19U, timeUnits));
|
|||
|
|
|
|||
|
|
r.Append(new Cell() { CellReference = "V40", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "W40", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "X40", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Y40", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "Z40", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AA40", StyleIndex = (UInt32Value)20U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AB40", StyleIndex = (UInt32Value)21U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AC40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
r.Append(new Cell() { CellReference = "AD40", StyleIndex = (UInt32Value)2U });
|
|||
|
|
|
|||
|
|
sheetData3.Append(r);
|
|||
|
|
|
|||
|
|
for( uint i = 41U; i < 54U; i ++ ){ sheetData3.Append(InsertBlankRow2(i));}
|
|||
|
|
|
|||
|
|
/*for( uint i = 54U; i <= 106U; i ++ ){ sheetData3.Append(InsertBlankRow3(i));}*/
|
|||
|
|
|
|||
|
|
MergeCells mergeCells2 = new MergeCells() { Count = (UInt32Value)40U };
|
|||
|
|
MergeCell mergeCell89 = new MergeCell() { Reference = "C20:D20" };
|
|||
|
|
MergeCell mergeCell90 = new MergeCell() { Reference = "C22:D22" };
|
|||
|
|
MergeCell mergeCell91 = new MergeCell() { Reference = "G20:I20" };
|
|||
|
|
MergeCell mergeCell92 = new MergeCell() { Reference = "G22:I22" };
|
|||
|
|
MergeCell mergeCell93 = new MergeCell() { Reference = "P1:R1" };
|
|||
|
|
MergeCell mergeCell94 = new MergeCell() { Reference = "P2:R2" };
|
|||
|
|
MergeCell mergeCell95 = new MergeCell() { Reference = "P16:S16" };
|
|||
|
|
MergeCell mergeCell96 = new MergeCell() { Reference = "P14:S14" };
|
|||
|
|
MergeCell mergeCell96b = new MergeCell() { Reference = "P24:S24" };
|
|||
|
|
MergeCell mergeCell97 = new MergeCell() { Reference = "P18:S18" };
|
|||
|
|
MergeCell mergeCell98 = new MergeCell() { Reference = "P35:S35" };
|
|||
|
|
MergeCell mergeCell99 = new MergeCell() { Reference = "P36:S36" };
|
|||
|
|
MergeCell mergeCell100 = new MergeCell() { Reference = "P40:S40" };
|
|||
|
|
MergeCell mergeCell101 = new MergeCell() { Reference = "Q28:R28" };
|
|||
|
|
MergeCell mergeCell102 = new MergeCell() { Reference = "Q30:R30" };
|
|||
|
|
MergeCell mergeCell103 = new MergeCell() { Reference = "P38:S38" };
|
|||
|
|
MergeCell mergeCell104 = new MergeCell() { Reference = "P26:S26" };
|
|||
|
|
MergeCell mergeCell105 = new MergeCell() { Reference = "P32:S32" };
|
|||
|
|
MergeCell mergeCell106 = new MergeCell() { Reference = "P33:S33" };
|
|||
|
|
MergeCell mergeCell107 = new MergeCell() { Reference = "P22:S22" };
|
|||
|
|
MergeCell mergeCell108 = new MergeCell() { Reference = "P20:S20" };
|
|||
|
|
MergeCell mergeCell109 = new MergeCell() { Reference = "U6:AB6" };
|
|||
|
|
MergeCell mergeCell110 = new MergeCell() { Reference = "U8:AB8" };
|
|||
|
|
MergeCell mergeCell111 = new MergeCell() { Reference = "U10:AB10" };
|
|||
|
|
MergeCell mergeCell112 = new MergeCell() { Reference = "U12:AB12" };
|
|||
|
|
MergeCell mergeCell113 = new MergeCell() { Reference = "P12:S12" };
|
|||
|
|
MergeCell mergeCell114 = new MergeCell() { Reference = "P10:S10" };
|
|||
|
|
MergeCell mergeCell115 = new MergeCell() { Reference = "P8:S8" };
|
|||
|
|
MergeCell mergeCell116 = new MergeCell() { Reference = "P6:S6" };
|
|||
|
|
MergeCell mergeCell117 = new MergeCell() { Reference = "U14:AB14" };
|
|||
|
|
MergeCell mergeCell117b = new MergeCell() { Reference = "U24:AB24" };
|
|||
|
|
MergeCell mergeCell118 = new MergeCell() { Reference = "U16:AB16" };
|
|||
|
|
MergeCell mergeCell119 = new MergeCell() { Reference = "U18:AB18" };
|
|||
|
|
MergeCell mergeCell120 = new MergeCell() { Reference = "U20:AB20" };
|
|||
|
|
MergeCell mergeCell121 = new MergeCell() { Reference = "U22:AB22" };
|
|||
|
|
MergeCell mergeCell122 = new MergeCell() { Reference = "U40:AB40" };
|
|||
|
|
MergeCell mergeCell123 = new MergeCell() { Reference = "U26:AB26" };
|
|||
|
|
MergeCell mergeCell124 = new MergeCell() { Reference = "U28:AB28" };
|
|||
|
|
MergeCell mergeCell125 = new MergeCell() { Reference = "U30:AB30" };
|
|||
|
|
MergeCell mergeCell126 = new MergeCell() { Reference = "U33:AB33" };
|
|||
|
|
MergeCell mergeCell127 = new MergeCell() { Reference = "U36:AB36" };
|
|||
|
|
MergeCell mergeCell128 = new MergeCell() { Reference = "U38:AB38" };
|
|||
|
|
|
|||
|
|
mergeCells2.Append(mergeCell89);
|
|||
|
|
mergeCells2.Append(mergeCell90);
|
|||
|
|
mergeCells2.Append(mergeCell91);
|
|||
|
|
mergeCells2.Append(mergeCell92);
|
|||
|
|
mergeCells2.Append(mergeCell93);
|
|||
|
|
mergeCells2.Append(mergeCell94);
|
|||
|
|
mergeCells2.Append(mergeCell95);
|
|||
|
|
mergeCells2.Append(mergeCell96);
|
|||
|
|
mergeCells2.Append(mergeCell96b);
|
|||
|
|
mergeCells2.Append(mergeCell97);
|
|||
|
|
mergeCells2.Append(mergeCell98);
|
|||
|
|
mergeCells2.Append(mergeCell99);
|
|||
|
|
mergeCells2.Append(mergeCell100);
|
|||
|
|
mergeCells2.Append(mergeCell101);
|
|||
|
|
mergeCells2.Append(mergeCell102);
|
|||
|
|
mergeCells2.Append(mergeCell103);
|
|||
|
|
mergeCells2.Append(mergeCell104);
|
|||
|
|
mergeCells2.Append(mergeCell105);
|
|||
|
|
mergeCells2.Append(mergeCell106);
|
|||
|
|
mergeCells2.Append(mergeCell107);
|
|||
|
|
mergeCells2.Append(mergeCell108);
|
|||
|
|
mergeCells2.Append(mergeCell109);
|
|||
|
|
mergeCells2.Append(mergeCell110);
|
|||
|
|
mergeCells2.Append(mergeCell111);
|
|||
|
|
mergeCells2.Append(mergeCell112);
|
|||
|
|
mergeCells2.Append(mergeCell113);
|
|||
|
|
mergeCells2.Append(mergeCell114);
|
|||
|
|
mergeCells2.Append(mergeCell115);
|
|||
|
|
mergeCells2.Append(mergeCell116);
|
|||
|
|
mergeCells2.Append(mergeCell117);
|
|||
|
|
mergeCells2.Append(mergeCell117b);
|
|||
|
|
mergeCells2.Append(mergeCell118);
|
|||
|
|
mergeCells2.Append(mergeCell119);
|
|||
|
|
mergeCells2.Append(mergeCell120);
|
|||
|
|
mergeCells2.Append(mergeCell121);
|
|||
|
|
mergeCells2.Append(mergeCell122);
|
|||
|
|
mergeCells2.Append(mergeCell123);
|
|||
|
|
mergeCells2.Append(mergeCell124);
|
|||
|
|
mergeCells2.Append(mergeCell125);
|
|||
|
|
mergeCells2.Append(mergeCell126);
|
|||
|
|
mergeCells2.Append(mergeCell127);
|
|||
|
|
mergeCells2.Append(mergeCell128);
|
|||
|
|
PageMargins pageMargins5 = new PageMargins() { Left = 0.7D, Right = 0.7D, Top = 0.75D, Bottom = 0.75D, Header = 0.3D, Footer = 0.3D };
|
|||
|
|
PageSetup pageSetup4 = new PageSetup() { PaperSize = (UInt32Value)9U, 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(pageMargins5);
|
|||
|
|
worksheet3.Append(pageSetup4);
|
|||
|
|
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 twoCellAnchor3 = new Xdr.TwoCellAnchor();
|
|||
|
|
|
|||
|
|
Xdr.FromMarker fromMarker3 = new Xdr.FromMarker();
|
|||
|
|
Xdr.ColumnId columnId5 = new Xdr.ColumnId();
|
|||
|
|
columnId5.Text = "1";
|
|||
|
|
Xdr.ColumnOffset columnOffset5 = new Xdr.ColumnOffset();
|
|||
|
|
columnOffset5.Text = "95250";
|
|||
|
|
Xdr.RowId rowId5 = new Xdr.RowId();
|
|||
|
|
rowId5.Text = "8";
|
|||
|
|
Xdr.RowOffset rowOffset5 = new Xdr.RowOffset();
|
|||
|
|
rowOffset5.Text = "9525";
|
|||
|
|
|
|||
|
|
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 = "13";
|
|||
|
|
Xdr.ColumnOffset columnOffset6 = new Xdr.ColumnOffset();
|
|||
|
|
columnOffset6.Text = "314325";
|
|||
|
|
Xdr.RowId rowId6 = new Xdr.RowId();
|
|||
|
|
rowId6.Text = "16";
|
|||
|
|
Xdr.RowOffset rowOffset6 = new Xdr.RowOffset();
|
|||
|
|
rowOffset6.Text = "0";
|
|||
|
|
|
|||
|
|
toMarker3.Append(columnId6);
|
|||
|
|
toMarker3.Append(columnOffset6);
|
|||
|
|
toMarker3.Append(rowId6);
|
|||
|
|
toMarker3.Append(rowOffset6);
|
|||
|
|
|
|||
|
|
Xdr.Shape shape1 = new Xdr.Shape() { Macro = "", TextLink = "" };
|
|||
|
|
|
|||
|
|
Xdr.NonVisualShapeProperties nonVisualShapeProperties1 = new Xdr.NonVisualShapeProperties();
|
|||
|
|
Xdr.NonVisualDrawingProperties nonVisualDrawingProperties3 = new Xdr.NonVisualDrawingProperties() { Id = (UInt32Value)2U, 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(nonVisualDrawingProperties3);
|
|||
|
|
nonVisualShapeProperties1.Append(nonVisualShapeDrawingProperties1);
|
|||
|
|
|
|||
|
|
Xdr.ShapeProperties shapeProperties1 = new Xdr.ShapeProperties() { BlackWhiteMode = A.BlackWhiteModeValues.Auto };
|
|||
|
|
|
|||
|
|
A.Transform2D transform2D1 = new A.Transform2D();
|
|||
|
|
A.Offset offset3 = new A.Offset() { X = 476250L, Y = 1457325L };
|
|||
|
|
A.Extents extents3 = new A.Extents() { Cx = 4791075L, Cy = 1438275L };
|
|||
|
|
|
|||
|
|
transform2D1.Append(offset3);
|
|||
|
|
transform2D1.Append(extents3);
|
|||
|
|
|
|||
|
|
A.PresetGeometry presetGeometry1 = new A.PresetGeometry() { Preset = A.ShapeTypeValues.Rectangle };
|
|||
|
|
A.AdjustValueList adjustValueList1 = new A.AdjustValueList();
|
|||
|
|
|
|||
|
|
presetGeometry1.Append(adjustValueList1);
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill11 = new A.SolidFill();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex4 = new A.RgbColorModelHex() { Val = "FFFFFF" };
|
|||
|
|
|
|||
|
|
solidFill11.Append(rgbColorModelHex4);
|
|||
|
|
|
|||
|
|
A.Outline outline11 = new A.Outline() { Width = 9525 };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill12 = new A.SolidFill();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex5 = new A.RgbColorModelHex() { Val = "000000" };
|
|||
|
|
|
|||
|
|
solidFill12.Append(rgbColorModelHex5);
|
|||
|
|
A.Miter miter1 = new A.Miter() { Limit = 800000 };
|
|||
|
|
A.HeadEnd headEnd1 = new A.HeadEnd();
|
|||
|
|
A.TailEnd tailEnd1 = new A.TailEnd();
|
|||
|
|
|
|||
|
|
outline11.Append(solidFill12);
|
|||
|
|
outline11.Append(miter1);
|
|||
|
|
outline11.Append(headEnd1);
|
|||
|
|
outline11.Append(tailEnd1);
|
|||
|
|
|
|||
|
|
shapeProperties1.Append(transform2D1);
|
|||
|
|
shapeProperties1.Append(presetGeometry1);
|
|||
|
|
shapeProperties1.Append(solidFill11);
|
|||
|
|
shapeProperties1.Append(outline11);
|
|||
|
|
|
|||
|
|
Xdr.TextBody textBody1 = new Xdr.TextBody();
|
|||
|
|
A.BodyProperties bodyProperties5 = 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 listStyle5 = new A.ListStyle();
|
|||
|
|
|
|||
|
|
A.Paragraph paragraph5 = new A.Paragraph();
|
|||
|
|
|
|||
|
|
A.ParagraphProperties paragraphProperties5 = new A.ParagraphProperties() { Alignment = A.TextAlignmentTypeValues.Center, RightToLeft = false };
|
|||
|
|
A.DefaultRunProperties defaultRunProperties5 = new A.DefaultRunProperties() { FontSize = 1000 };
|
|||
|
|
|
|||
|
|
paragraphProperties5.Append(defaultRunProperties5);
|
|||
|
|
|
|||
|
|
A.Run run5 = new A.Run();
|
|||
|
|
|
|||
|
|
A.RunProperties runProperties5 = 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 solidFill13 = new A.SolidFill();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex6 = new A.RgbColorModelHex() { Val = "000000" };
|
|||
|
|
|
|||
|
|
solidFill13.Append(rgbColorModelHex6);
|
|||
|
|
A.LatinFont latinFont1 = new A.LatinFont() { Typeface = "Segoe UI", PitchFamily = 34, CharacterSet = 0 };
|
|||
|
|
A.EastAsianFont eastAsianFont1 = new A.EastAsianFont() { Typeface = "MS Pゴシック" };
|
|||
|
|
|
|||
|
|
runProperties5.Append(solidFill13);
|
|||
|
|
runProperties5.Append(latinFont1);
|
|||
|
|
runProperties5.Append(eastAsianFont1);
|
|||
|
|
A.Text text5 = new A.Text();
|
|||
|
|
text5.Text = "Head and Leg";
|
|||
|
|
|
|||
|
|
run5.Append(runProperties5);
|
|||
|
|
run5.Append(text5);
|
|||
|
|
|
|||
|
|
paragraph5.Append(paragraphProperties5);
|
|||
|
|
paragraph5.Append(run5);
|
|||
|
|
|
|||
|
|
A.Paragraph paragraph6 = new A.Paragraph();
|
|||
|
|
|
|||
|
|
A.ParagraphProperties paragraphProperties6 = new A.ParagraphProperties() { Alignment = A.TextAlignmentTypeValues.Center, RightToLeft = false };
|
|||
|
|
A.DefaultRunProperties defaultRunProperties6 = new A.DefaultRunProperties() { FontSize = 1000 };
|
|||
|
|
|
|||
|
|
paragraphProperties6.Append(defaultRunProperties6);
|
|||
|
|
|
|||
|
|
A.Run run6 = new A.Run();
|
|||
|
|
|
|||
|
|
A.RunProperties runProperties6 = 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 solidFill14 = new A.SolidFill();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex7 = new A.RgbColorModelHex() { Val = "000000" };
|
|||
|
|
|
|||
|
|
solidFill14.Append(rgbColorModelHex7);
|
|||
|
|
A.LatinFont latinFont2 = new A.LatinFont() { Typeface = "Segoe UI", PitchFamily = 34, CharacterSet = 0 };
|
|||
|
|
A.EastAsianFont eastAsianFont2 = new A.EastAsianFont() { Typeface = "MS Pゴシック" };
|
|||
|
|
|
|||
|
|
runProperties6.Append(solidFill14);
|
|||
|
|
runProperties6.Append(latinFont2);
|
|||
|
|
runProperties6.Append(eastAsianFont2);
|
|||
|
|
A.Text text6 = new A.Text();
|
|||
|
|
text6.Text = "Protection of Pedestrians ";
|
|||
|
|
|
|||
|
|
run6.Append(runProperties6);
|
|||
|
|
run6.Append(text6);
|
|||
|
|
|
|||
|
|
paragraph6.Append(paragraphProperties6);
|
|||
|
|
paragraph6.Append(run6);
|
|||
|
|
|
|||
|
|
A.Paragraph paragraph7 = new A.Paragraph();
|
|||
|
|
|
|||
|
|
A.ParagraphProperties paragraphProperties7 = new A.ParagraphProperties() { Alignment = A.TextAlignmentTypeValues.Center, RightToLeft = false };
|
|||
|
|
A.DefaultRunProperties defaultRunProperties7 = new A.DefaultRunProperties() { FontSize = 1000 };
|
|||
|
|
|
|||
|
|
paragraphProperties7.Append(defaultRunProperties7);
|
|||
|
|
|
|||
|
|
A.Run run7 = new A.Run();
|
|||
|
|
|
|||
|
|
A.RunProperties runProperties7 = 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 solidFill15 = new A.SolidFill();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex8 = new A.RgbColorModelHex() { Val = "000000" };
|
|||
|
|
|
|||
|
|
solidFill15.Append(rgbColorModelHex8);
|
|||
|
|
A.LatinFont latinFont3 = new A.LatinFont() { Typeface = "Segoe UI", PitchFamily = 34, CharacterSet = 0 };
|
|||
|
|
A.EastAsianFont eastAsianFont3 = new A.EastAsianFont() { Typeface = "MS Pゴシック" };
|
|||
|
|
|
|||
|
|
runProperties7.Append(solidFill15);
|
|||
|
|
runProperties7.Append(latinFont3);
|
|||
|
|
runProperties7.Append(eastAsianFont3);
|
|||
|
|
A.Text text7 = new A.Text();
|
|||
|
|
text7.Text = "Test";
|
|||
|
|
|
|||
|
|
run7.Append(runProperties7);
|
|||
|
|
run7.Append(text7);
|
|||
|
|
|
|||
|
|
paragraph7.Append(paragraphProperties7);
|
|||
|
|
paragraph7.Append(run7);
|
|||
|
|
|
|||
|
|
textBody1.Append(bodyProperties5);
|
|||
|
|
textBody1.Append(listStyle5);
|
|||
|
|
textBody1.Append(paragraph5);
|
|||
|
|
textBody1.Append(paragraph6);
|
|||
|
|
textBody1.Append(paragraph7);
|
|||
|
|
|
|||
|
|
shape1.Append(nonVisualShapeProperties1);
|
|||
|
|
shape1.Append(shapeProperties1);
|
|||
|
|
shape1.Append(textBody1);
|
|||
|
|
Xdr.ClientData clientData3 = new Xdr.ClientData();
|
|||
|
|
|
|||
|
|
twoCellAnchor3.Append(fromMarker3);
|
|||
|
|
twoCellAnchor3.Append(toMarker3);
|
|||
|
|
twoCellAnchor3.Append(shape1);
|
|||
|
|
twoCellAnchor3.Append(clientData3);
|
|||
|
|
|
|||
|
|
worksheetDrawing2.Append(twoCellAnchor3);
|
|||
|
|
|
|||
|
|
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 sharedStringTablePart1.
|
|||
|
|
private void GenerateSharedStringTablePart1Content(SharedStringTablePart sharedStringTablePart1)
|
|||
|
|
{
|
|||
|
|
SharedStringTable sharedStringTable1 = new SharedStringTable() { Count = (UInt32Value)114U, UniqueCount = (UInt32Value)62U };
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem1 = new SharedStringItem();
|
|||
|
|
Text text8 = new Text();
|
|||
|
|
text8.Text = "評価部位";
|
|||
|
|
|
|||
|
|
sharedStringItem1.Append(text8);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem2 = new SharedStringItem();
|
|||
|
|
Text text9 = new Text();
|
|||
|
|
text9.Text = "種類";
|
|||
|
|
|
|||
|
|
sharedStringItem2.Append(text9);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem3 = new SharedStringItem();
|
|||
|
|
Text text10 = new Text();
|
|||
|
|
text10.Text = "TEST";
|
|||
|
|
|
|||
|
|
sharedStringItem3.Append(text10);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem4 = new SharedStringItem();
|
|||
|
|
Text text11 = new Text();
|
|||
|
|
text11.Text = "試験NO";
|
|||
|
|
|
|||
|
|
sharedStringItem4.Append(text11);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem5 = new SharedStringItem();
|
|||
|
|
Text text12 = new Text();
|
|||
|
|
text12.Text = "試験実施日";
|
|||
|
|
|
|||
|
|
sharedStringItem5.Append(text12);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem6 = new SharedStringItem();
|
|||
|
|
Text text13 = new Text();
|
|||
|
|
text13.Text = "車名";
|
|||
|
|
|
|||
|
|
sharedStringItem6.Append(text13);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem7 = new SharedStringItem();
|
|||
|
|
Text text14 = new Text();
|
|||
|
|
text14.Text = "型式";
|
|||
|
|
|
|||
|
|
sharedStringItem7.Append(text14);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem8 = new SharedStringItem();
|
|||
|
|
Text text15 = new Text();
|
|||
|
|
text15.Text = "試験温度";
|
|||
|
|
|
|||
|
|
sharedStringItem8.Append(text15);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem9 = new SharedStringItem();
|
|||
|
|
Text text16 = new Text();
|
|||
|
|
text16.Text = "測定点";
|
|||
|
|
|
|||
|
|
sharedStringItem9.Append(text16);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem10 = new SharedStringItem();
|
|||
|
|
Text text17 = new Text();
|
|||
|
|
text17.Text = "衝突速度";
|
|||
|
|
|
|||
|
|
sharedStringItem10.Append(text17);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem11 = new SharedStringItem();
|
|||
|
|
Text text18 = new Text();
|
|||
|
|
text18.Text = "インパクタID";
|
|||
|
|
|
|||
|
|
sharedStringItem11.Append(text18);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem12 = new SharedStringItem();
|
|||
|
|
Text text19 = new Text();
|
|||
|
|
text19.Text = "インパクタ種類";
|
|||
|
|
|
|||
|
|
sharedStringItem12.Append(text19);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem13 = new SharedStringItem();
|
|||
|
|
Text text20 = new Text();
|
|||
|
|
text20.Text = "試験担当者";
|
|||
|
|
|
|||
|
|
sharedStringItem13.Append(text20);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem14 = new SharedStringItem();
|
|||
|
|
Text text21 = new Text();
|
|||
|
|
text21.Text = "予備1";
|
|||
|
|
|
|||
|
|
sharedStringItem14.Append(text21);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem15 = new SharedStringItem();
|
|||
|
|
Text text22 = new Text();
|
|||
|
|
text22.Text = "予備2";
|
|||
|
|
|
|||
|
|
sharedStringItem15.Append(text22);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem16 = new SharedStringItem();
|
|||
|
|
Text text23 = new Text();
|
|||
|
|
text23.Text = "選択自動表示項目";
|
|||
|
|
|
|||
|
|
sharedStringItem16.Append(text23);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem17 = new SharedStringItem();
|
|||
|
|
Text text24 = new Text();
|
|||
|
|
text24.Text = "周波数クラス";
|
|||
|
|
|
|||
|
|
sharedStringItem17.Append(text24);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem18 = new SharedStringItem();
|
|||
|
|
Text text25 = new Text();
|
|||
|
|
text25.Text = "UNIT";
|
|||
|
|
|
|||
|
|
sharedStringItem18.Append(text25);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem19 = new SharedStringItem();
|
|||
|
|
Text text26 = new Text();
|
|||
|
|
text26.Text = "Time";
|
|||
|
|
|
|||
|
|
sharedStringItem19.Append(text26);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem20 = new SharedStringItem();
|
|||
|
|
Text text27 = new Text();
|
|||
|
|
text27.Text = "TEST_REF_NUMBER";
|
|||
|
|
|
|||
|
|
sharedStringItem20.Append(text27);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem21 = new SharedStringItem();
|
|||
|
|
Text text28 = new Text();
|
|||
|
|
text28.Text = "TEST_TIME_INFO";
|
|||
|
|
|
|||
|
|
sharedStringItem21.Append(text28);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem22 = new SharedStringItem();
|
|||
|
|
Text text29 = new Text();
|
|||
|
|
text29.Text = "CAR_MAKER";
|
|||
|
|
|
|||
|
|
sharedStringItem22.Append(text29);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem23 = new SharedStringItem();
|
|||
|
|
Text text30 = new Text();
|
|||
|
|
text30.Text = "CAR_MODEL";
|
|||
|
|
|
|||
|
|
sharedStringItem23.Append(text30);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem24 = new SharedStringItem();
|
|||
|
|
Text text31 = new Text();
|
|||
|
|
text31.Text = "TEST_TEMPERATURE";
|
|||
|
|
|
|||
|
|
sharedStringItem24.Append(text31);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem25 = new SharedStringItem();
|
|||
|
|
Text text32 = new Text();
|
|||
|
|
text32.Text = "TEST_CFC";
|
|||
|
|
|
|||
|
|
sharedStringItem25.Append(text32);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem26 = new SharedStringItem();
|
|||
|
|
Text text33 = new Text();
|
|||
|
|
text33.Text = "TIME_UNITS";
|
|||
|
|
|
|||
|
|
sharedStringItem26.Append(text33);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem27 = new SharedStringItem();
|
|||
|
|
Text text34 = new Text();
|
|||
|
|
text34.Text = "AND_2";
|
|||
|
|
|
|||
|
|
sharedStringItem27.Append(text34);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem28 = new SharedStringItem();
|
|||
|
|
Text text35 = new Text();
|
|||
|
|
text35.Text = "AND_1";
|
|||
|
|
|
|||
|
|
sharedStringItem28.Append(text35);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem29 = new SharedStringItem();
|
|||
|
|
Text text36 = new Text();
|
|||
|
|
text36.Text = "STUDY_PERSONNEL";
|
|||
|
|
|
|||
|
|
sharedStringItem29.Append(text36);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem30 = new SharedStringItem();
|
|||
|
|
Text text37 = new Text();
|
|||
|
|
text37.Text = "MEASURING_POINT";
|
|||
|
|
|
|||
|
|
sharedStringItem30.Append(text37);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem31 = new SharedStringItem();
|
|||
|
|
Text text38 = new Text();
|
|||
|
|
text38.Text = "CONFLICT_SPEED";
|
|||
|
|
|
|||
|
|
sharedStringItem31.Append(text38);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem32 = new SharedStringItem();
|
|||
|
|
Text text39 = new Text();
|
|||
|
|
text39.Text = "IMPACTOR_ID";
|
|||
|
|
|
|||
|
|
sharedStringItem32.Append(text39);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem33 = new SharedStringItem();
|
|||
|
|
Text text40 = new Text();
|
|||
|
|
text40.Text = "IMPACTOR_TYPE";
|
|||
|
|
|
|||
|
|
sharedStringItem33.Append(text40);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem34 = new SharedStringItem();
|
|||
|
|
Text text41 = new Text();
|
|||
|
|
text41.Text = "インパクタ重量";
|
|||
|
|
|
|||
|
|
sharedStringItem34.Append(text41);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem35 = new SharedStringItem();
|
|||
|
|
Text text42 = new Text();
|
|||
|
|
text42.Text = "IMPACTOR_WEIGHT";
|
|||
|
|
|
|||
|
|
sharedStringItem35.Append(text42);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem36 = new SharedStringItem();
|
|||
|
|
Text text43 = new Text();
|
|||
|
|
text43.Text = "Max";
|
|||
|
|
|
|||
|
|
sharedStringItem36.Append(text43);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem37 = new SharedStringItem();
|
|||
|
|
Text text44 = new Text();
|
|||
|
|
text44.Text = "Time of Max";
|
|||
|
|
|
|||
|
|
sharedStringItem37.Append(text44);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem38 = new SharedStringItem();
|
|||
|
|
Text text45 = new Text();
|
|||
|
|
text45.Text = "Min";
|
|||
|
|
|
|||
|
|
sharedStringItem38.Append(text45);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem39 = new SharedStringItem();
|
|||
|
|
Text text46 = new Text();
|
|||
|
|
text46.Text = "Time of Min";
|
|||
|
|
|
|||
|
|
sharedStringItem39.Append(text46);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem40 = new SharedStringItem();
|
|||
|
|
Text text47 = new Text();
|
|||
|
|
text47.Text = "UPR Leg";
|
|||
|
|
|
|||
|
|
sharedStringItem40.Append(text47);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem41 = new SharedStringItem();
|
|||
|
|
Text text48 = new Text();
|
|||
|
|
text48.Text = "Force";
|
|||
|
|
|
|||
|
|
sharedStringItem41.Append(text48);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem42 = new SharedStringItem();
|
|||
|
|
Text text49 = new Text();
|
|||
|
|
text49.Text = "Moment";
|
|||
|
|
|
|||
|
|
sharedStringItem42.Append(text49);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem43 = new SharedStringItem();
|
|||
|
|
Text text50 = new Text();
|
|||
|
|
text50.Text = "MOMENT_UNITS";
|
|||
|
|
|
|||
|
|
sharedStringItem43.Append(text50);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem44 = new SharedStringItem();
|
|||
|
|
Text text51 = new Text();
|
|||
|
|
text51.Text = "FORCE_UNITS";
|
|||
|
|
|
|||
|
|
sharedStringItem44.Append(text51);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem45 = new SharedStringItem();
|
|||
|
|
Text text52 = new Text();
|
|||
|
|
text52.Text = "Total Force (kN)";
|
|||
|
|
|
|||
|
|
sharedStringItem45.Append(text52);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem46 = new SharedStringItem();
|
|||
|
|
Text text53 = new Text();
|
|||
|
|
text53.Text = "UPR Force (kN)";
|
|||
|
|
|
|||
|
|
sharedStringItem46.Append(text53);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem47 = new SharedStringItem();
|
|||
|
|
Text text54 = new Text();
|
|||
|
|
text54.Text = "UPR Moment (Nm)";
|
|||
|
|
|
|||
|
|
sharedStringItem47.Append(text54);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem48 = new SharedStringItem();
|
|||
|
|
Text text55 = new Text();
|
|||
|
|
text55.Text = "MID Moment(Nm)";
|
|||
|
|
|
|||
|
|
sharedStringItem48.Append(text55);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem49 = new SharedStringItem();
|
|||
|
|
Text text56 = new Text();
|
|||
|
|
text56.Text = "LWR Moment(Nm)";
|
|||
|
|
|
|||
|
|
sharedStringItem49.Append(text56);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem50 = new SharedStringItem();
|
|||
|
|
Text text57 = new Text();
|
|||
|
|
text57.Text = "LWR Force (kN)";
|
|||
|
|
|
|||
|
|
sharedStringItem50.Append(text57);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem51 = new SharedStringItem();
|
|||
|
|
Text text58 = new Text();
|
|||
|
|
text58.Text = "TFx";
|
|||
|
|
|
|||
|
|
sharedStringItem51.Append(text58);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem52 = new SharedStringItem();
|
|||
|
|
Text text59 = new Text();
|
|||
|
|
text59.Text = "Tfy";
|
|||
|
|
|
|||
|
|
sharedStringItem52.Append(text59);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem53 = new SharedStringItem();
|
|||
|
|
Text text60 = new Text();
|
|||
|
|
text60.Text = "Ufx";
|
|||
|
|
|
|||
|
|
sharedStringItem53.Append(text60);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem54 = new SharedStringItem();
|
|||
|
|
Text text61 = new Text();
|
|||
|
|
text61.Text = "Ufy";
|
|||
|
|
|
|||
|
|
sharedStringItem54.Append(text61);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem55 = new SharedStringItem();
|
|||
|
|
Text text62 = new Text();
|
|||
|
|
text62.Text = "LFx";
|
|||
|
|
|
|||
|
|
sharedStringItem55.Append(text62);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem56 = new SharedStringItem();
|
|||
|
|
Text text63 = new Text();
|
|||
|
|
text63.Text = "LF-Y";
|
|||
|
|
|
|||
|
|
sharedStringItem56.Append(text63);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem57 = new SharedStringItem();
|
|||
|
|
Text text64 = new Text();
|
|||
|
|
text64.Text = "UM-x";
|
|||
|
|
|
|||
|
|
sharedStringItem57.Append(text64);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem58 = new SharedStringItem();
|
|||
|
|
Text text65 = new Text();
|
|||
|
|
text65.Text = "UM-y";
|
|||
|
|
|
|||
|
|
sharedStringItem58.Append(text65);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem59 = new SharedStringItem();
|
|||
|
|
Text text66 = new Text();
|
|||
|
|
text66.Text = "MM-x";
|
|||
|
|
|
|||
|
|
sharedStringItem59.Append(text66);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem60 = new SharedStringItem();
|
|||
|
|
Text text67 = new Text();
|
|||
|
|
text67.Text = "MM-y";
|
|||
|
|
|
|||
|
|
sharedStringItem60.Append(text67);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem61 = new SharedStringItem();
|
|||
|
|
Text text68 = new Text();
|
|||
|
|
text68.Text = "LM-x";
|
|||
|
|
|
|||
|
|
sharedStringItem61.Append(text68);
|
|||
|
|
|
|||
|
|
SharedStringItem sharedStringItem62 = new SharedStringItem();
|
|||
|
|
Text text69 = new Text();
|
|||
|
|
text69.Text = "LM-y";
|
|||
|
|
|
|||
|
|
sharedStringItem62.Append(text69);
|
|||
|
|
|
|||
|
|
sharedStringTable1.Append(sharedStringItem1);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem2);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem3);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem4);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem5);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem6);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem7);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem8);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem9);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem10);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem11);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem12);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem13);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem14);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem15);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem16);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem17);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem18);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem19);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem20);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem21);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem22);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem23);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem24);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem25);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem26);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem27);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem28);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem29);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem30);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem31);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem32);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem33);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem34);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem35);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem36);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem37);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem38);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem39);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem40);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem41);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem42);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem43);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem44);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem45);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem46);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem47);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem48);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem49);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem50);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem51);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem52);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem53);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem54);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem55);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem56);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem57);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem58);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem59);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem60);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem61);
|
|||
|
|
sharedStringTable1.Append(sharedStringItem62);
|
|||
|
|
|
|||
|
|
sharedStringTablePart1.SharedStringTable = sharedStringTable1;
|
|||
|
|
}
|
|||
|
|
*/
|
|||
|
|
// Generates content of workbookStylesPart1.
|
|||
|
|
private void GenerateWorkbookStylesPart1Content(WorkbookStylesPart workbookStylesPart1)
|
|||
|
|
{
|
|||
|
|
Stylesheet stylesheet1 = new Stylesheet();
|
|||
|
|
|
|||
|
|
NumberingFormats numberingFormats1 = new NumberingFormats() { Count = (UInt32Value)1U };
|
|||
|
|
NumberingFormat numberingFormat5 = new NumberingFormat() { NumberFormatId = (UInt32Value)164U, FormatCode = "#,##0.0000" };
|
|||
|
|
|
|||
|
|
numberingFormats1.Append(numberingFormat5);
|
|||
|
|
|
|||
|
|
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 };
|
|||
|
|
FontCharSet fontCharSet2 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme2 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font2.Append(fontSize2);
|
|||
|
|
font2.Append(color2);
|
|||
|
|
font2.Append(fontName2);
|
|||
|
|
font2.Append(fontFamilyNumbering2);
|
|||
|
|
font2.Append(fontCharSet2);
|
|||
|
|
font2.Append(fontScheme2);
|
|||
|
|
|
|||
|
|
Font font3 = new Font();
|
|||
|
|
Bold bold1 = new Bold();
|
|||
|
|
FontSize fontSize3 = new FontSize() { Val = 18D };
|
|||
|
|
Color color3 = new Color() { Theme = (UInt32Value)3U };
|
|||
|
|
FontName fontName3 = new FontName() { Val = "Cambria" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering3 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet3 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme3 = new FontScheme() { Val = FontSchemeValues.Major };
|
|||
|
|
|
|||
|
|
font3.Append(bold1);
|
|||
|
|
font3.Append(fontSize3);
|
|||
|
|
font3.Append(color3);
|
|||
|
|
font3.Append(fontName3);
|
|||
|
|
font3.Append(fontFamilyNumbering3);
|
|||
|
|
font3.Append(fontCharSet3);
|
|||
|
|
font3.Append(fontScheme3);
|
|||
|
|
|
|||
|
|
Font font4 = new Font();
|
|||
|
|
Bold bold2 = new Bold();
|
|||
|
|
FontSize fontSize4 = new FontSize() { Val = 15D };
|
|||
|
|
Color color4 = new Color() { Theme = (UInt32Value)3U };
|
|||
|
|
FontName fontName4 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering4 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet4 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme4 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font4.Append(bold2);
|
|||
|
|
font4.Append(fontSize4);
|
|||
|
|
font4.Append(color4);
|
|||
|
|
font4.Append(fontName4);
|
|||
|
|
font4.Append(fontFamilyNumbering4);
|
|||
|
|
font4.Append(fontCharSet4);
|
|||
|
|
font4.Append(fontScheme4);
|
|||
|
|
|
|||
|
|
Font font5 = new Font();
|
|||
|
|
Bold bold3 = new Bold();
|
|||
|
|
FontSize fontSize5 = new FontSize() { Val = 13D };
|
|||
|
|
Color color5 = new Color() { Theme = (UInt32Value)3U };
|
|||
|
|
FontName fontName5 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering5 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet5 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme5 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font5.Append(bold3);
|
|||
|
|
font5.Append(fontSize5);
|
|||
|
|
font5.Append(color5);
|
|||
|
|
font5.Append(fontName5);
|
|||
|
|
font5.Append(fontFamilyNumbering5);
|
|||
|
|
font5.Append(fontCharSet5);
|
|||
|
|
font5.Append(fontScheme5);
|
|||
|
|
|
|||
|
|
Font font6 = new Font();
|
|||
|
|
Bold bold4 = new Bold();
|
|||
|
|
FontSize fontSize6 = new FontSize() { Val = 11D };
|
|||
|
|
Color color6 = new Color() { Theme = (UInt32Value)3U };
|
|||
|
|
FontName fontName6 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering6 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet6 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme6 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font6.Append(bold4);
|
|||
|
|
font6.Append(fontSize6);
|
|||
|
|
font6.Append(color6);
|
|||
|
|
font6.Append(fontName6);
|
|||
|
|
font6.Append(fontFamilyNumbering6);
|
|||
|
|
font6.Append(fontCharSet6);
|
|||
|
|
font6.Append(fontScheme6);
|
|||
|
|
|
|||
|
|
Font font7 = new Font();
|
|||
|
|
FontSize fontSize7 = new FontSize() { Val = 11D };
|
|||
|
|
Color color7 = new Color() { Rgb = "FF006100" };
|
|||
|
|
FontName fontName7 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering7 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet7 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme7 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font7.Append(fontSize7);
|
|||
|
|
font7.Append(color7);
|
|||
|
|
font7.Append(fontName7);
|
|||
|
|
font7.Append(fontFamilyNumbering7);
|
|||
|
|
font7.Append(fontCharSet7);
|
|||
|
|
font7.Append(fontScheme7);
|
|||
|
|
|
|||
|
|
Font font8 = new Font();
|
|||
|
|
FontSize fontSize8 = new FontSize() { Val = 11D };
|
|||
|
|
Color color8 = new Color() { Rgb = "FF9C0006" };
|
|||
|
|
FontName fontName8 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering8 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet8 = 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(fontCharSet8);
|
|||
|
|
font8.Append(fontScheme8);
|
|||
|
|
|
|||
|
|
Font font9 = new Font();
|
|||
|
|
FontSize fontSize9 = new FontSize() { Val = 11D };
|
|||
|
|
Color color9 = new Color() { Rgb = "FF9C6500" };
|
|||
|
|
FontName fontName9 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering9 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet9 = 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(fontCharSet9);
|
|||
|
|
font9.Append(fontScheme9);
|
|||
|
|
|
|||
|
|
Font font10 = new Font();
|
|||
|
|
FontSize fontSize10 = new FontSize() { Val = 11D };
|
|||
|
|
Color color10 = new Color() { Rgb = "FF3F3F76" };
|
|||
|
|
FontName fontName10 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering10 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet10 = 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(fontCharSet10);
|
|||
|
|
font10.Append(fontScheme10);
|
|||
|
|
|
|||
|
|
Font font11 = new Font();
|
|||
|
|
Bold bold5 = new Bold();
|
|||
|
|
FontSize fontSize11 = new FontSize() { Val = 11D };
|
|||
|
|
Color color11 = new Color() { Rgb = "FF3F3F3F" };
|
|||
|
|
FontName fontName11 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering11 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet11 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme11 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font11.Append(bold5);
|
|||
|
|
font11.Append(fontSize11);
|
|||
|
|
font11.Append(color11);
|
|||
|
|
font11.Append(fontName11);
|
|||
|
|
font11.Append(fontFamilyNumbering11);
|
|||
|
|
font11.Append(fontCharSet11);
|
|||
|
|
font11.Append(fontScheme11);
|
|||
|
|
|
|||
|
|
Font font12 = new Font();
|
|||
|
|
Bold bold6 = new Bold();
|
|||
|
|
FontSize fontSize12 = new FontSize() { Val = 11D };
|
|||
|
|
Color color12 = new Color() { Rgb = "FFFA7D00" };
|
|||
|
|
FontName fontName12 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering12 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet12 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme12 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font12.Append(bold6);
|
|||
|
|
font12.Append(fontSize12);
|
|||
|
|
font12.Append(color12);
|
|||
|
|
font12.Append(fontName12);
|
|||
|
|
font12.Append(fontFamilyNumbering12);
|
|||
|
|
font12.Append(fontCharSet12);
|
|||
|
|
font12.Append(fontScheme12);
|
|||
|
|
|
|||
|
|
Font font13 = new Font();
|
|||
|
|
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 fontCharSet13 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme13 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font13.Append(fontSize13);
|
|||
|
|
font13.Append(color13);
|
|||
|
|
font13.Append(fontName13);
|
|||
|
|
font13.Append(fontFamilyNumbering13);
|
|||
|
|
font13.Append(fontCharSet13);
|
|||
|
|
font13.Append(fontScheme13);
|
|||
|
|
|
|||
|
|
Font font14 = new Font();
|
|||
|
|
Bold bold7 = new Bold();
|
|||
|
|
FontSize fontSize14 = new FontSize() { Val = 11D };
|
|||
|
|
Color color14 = new Color() { Theme = (UInt32Value)0U };
|
|||
|
|
FontName fontName14 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering14 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet14 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme14 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font14.Append(bold7);
|
|||
|
|
font14.Append(fontSize14);
|
|||
|
|
font14.Append(color14);
|
|||
|
|
font14.Append(fontName14);
|
|||
|
|
font14.Append(fontFamilyNumbering14);
|
|||
|
|
font14.Append(fontCharSet14);
|
|||
|
|
font14.Append(fontScheme14);
|
|||
|
|
|
|||
|
|
Font font15 = new Font();
|
|||
|
|
FontSize fontSize15 = new FontSize() { Val = 11D };
|
|||
|
|
Color color15 = new Color() { Rgb = "FFFF0000" };
|
|||
|
|
FontName fontName15 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering15 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet15 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme15 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font15.Append(fontSize15);
|
|||
|
|
font15.Append(color15);
|
|||
|
|
font15.Append(fontName15);
|
|||
|
|
font15.Append(fontFamilyNumbering15);
|
|||
|
|
font15.Append(fontCharSet15);
|
|||
|
|
font15.Append(fontScheme15);
|
|||
|
|
|
|||
|
|
Font font16 = new Font();
|
|||
|
|
Italic italic1 = new Italic();
|
|||
|
|
FontSize fontSize16 = new FontSize() { Val = 11D };
|
|||
|
|
Color color16 = new Color() { Rgb = "FF7F7F7F" };
|
|||
|
|
FontName fontName16 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering16 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet16 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme16 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font16.Append(italic1);
|
|||
|
|
font16.Append(fontSize16);
|
|||
|
|
font16.Append(color16);
|
|||
|
|
font16.Append(fontName16);
|
|||
|
|
font16.Append(fontFamilyNumbering16);
|
|||
|
|
font16.Append(fontCharSet16);
|
|||
|
|
font16.Append(fontScheme16);
|
|||
|
|
|
|||
|
|
Font font17 = new Font();
|
|||
|
|
Bold bold8 = new Bold();
|
|||
|
|
FontSize fontSize17 = new FontSize() { Val = 11D };
|
|||
|
|
Color color17 = new Color() { Theme = (UInt32Value)1U };
|
|||
|
|
FontName fontName17 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering17 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet17 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme17 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font17.Append(bold8);
|
|||
|
|
font17.Append(fontSize17);
|
|||
|
|
font17.Append(color17);
|
|||
|
|
font17.Append(fontName17);
|
|||
|
|
font17.Append(fontFamilyNumbering17);
|
|||
|
|
font17.Append(fontCharSet17);
|
|||
|
|
font17.Append(fontScheme17);
|
|||
|
|
|
|||
|
|
Font font18 = new Font();
|
|||
|
|
FontSize fontSize18 = new FontSize() { Val = 11D };
|
|||
|
|
Color color18 = new Color() { Theme = (UInt32Value)0U };
|
|||
|
|
FontName fontName18 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering18 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontCharSet fontCharSet18 = new FontCharSet() { Val = 128 };
|
|||
|
|
FontScheme fontScheme18 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font18.Append(fontSize18);
|
|||
|
|
font18.Append(color18);
|
|||
|
|
font18.Append(fontName18);
|
|||
|
|
font18.Append(fontFamilyNumbering18);
|
|||
|
|
font18.Append(fontCharSet18);
|
|||
|
|
font18.Append(fontScheme18);
|
|||
|
|
|
|||
|
|
Font font19 = new Font();
|
|||
|
|
FontSize fontSize19 = new FontSize() { Val = 11D };
|
|||
|
|
Color color19 = new Color() { Theme = (UInt32Value)1U };
|
|||
|
|
FontName fontName19 = new FontName() { Val = "Segoe UI" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering19 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
|
|||
|
|
font19.Append(fontSize19);
|
|||
|
|
font19.Append(color19);
|
|||
|
|
font19.Append(fontName19);
|
|||
|
|
font19.Append(fontFamilyNumbering19);
|
|||
|
|
|
|||
|
|
Font font20 = new Font();
|
|||
|
|
FontSize fontSize20 = new FontSize() { Val = 11D };
|
|||
|
|
Color color20 = new Color() { Theme = (UInt32Value)1U };
|
|||
|
|
FontName fontName20 = new FontName() { Val = "Calibri" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering20 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
FontScheme fontScheme19 = new FontScheme() { Val = FontSchemeValues.Minor };
|
|||
|
|
|
|||
|
|
font20.Append(fontSize20);
|
|||
|
|
font20.Append(color20);
|
|||
|
|
font20.Append(fontName20);
|
|||
|
|
font20.Append(fontFamilyNumbering20);
|
|||
|
|
font20.Append(fontScheme19);
|
|||
|
|
|
|||
|
|
Font font21 = new Font();
|
|||
|
|
FontSize fontSize21 = new FontSize() { Val = 10D };
|
|||
|
|
Color color21 = new Color() { Theme = (UInt32Value)1U };
|
|||
|
|
FontName fontName21 = new FontName() { Val = "Segoe UI" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering21 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
|
|||
|
|
font21.Append(fontSize21);
|
|||
|
|
font21.Append(color21);
|
|||
|
|
font21.Append(fontName21);
|
|||
|
|
font21.Append(fontFamilyNumbering21);
|
|||
|
|
|
|||
|
|
Font font22 = new Font();
|
|||
|
|
FontSize fontSize22 = new FontSize() { Val = 11D };
|
|||
|
|
FontName fontName22 = new FontName() { Val = "MS Pゴシック" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering22 = new FontFamilyNumbering() { Val = 3 };
|
|||
|
|
FontCharSet fontCharSet19 = new FontCharSet() { Val = 128 };
|
|||
|
|
|
|||
|
|
font22.Append(fontSize22);
|
|||
|
|
font22.Append(fontName22);
|
|||
|
|
font22.Append(fontFamilyNumbering22);
|
|||
|
|
font22.Append(fontCharSet19);
|
|||
|
|
|
|||
|
|
Font font23 = new Font();
|
|||
|
|
FontSize fontSize23 = new FontSize() { Val = 11D };
|
|||
|
|
FontName fontName23 = new FontName() { Val = "Segoe UI" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering23 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
|
|||
|
|
font23.Append(fontSize23);
|
|||
|
|
font23.Append(fontName23);
|
|||
|
|
font23.Append(fontFamilyNumbering23);
|
|||
|
|
|
|||
|
|
Font font24 = new Font();
|
|||
|
|
Bold bold9 = new Bold();
|
|||
|
|
FontSize fontSize24 = new FontSize() { Val = 11D };
|
|||
|
|
Color color22 = new Color() { Theme = (UInt32Value)1U };
|
|||
|
|
FontName fontName24 = new FontName() { Val = "Segoe UI" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering24 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
|
|||
|
|
font24.Append(bold9);
|
|||
|
|
font24.Append(fontSize24);
|
|||
|
|
font24.Append(color22);
|
|||
|
|
font24.Append(fontName24);
|
|||
|
|
font24.Append(fontFamilyNumbering24);
|
|||
|
|
|
|||
|
|
Font font25 = new Font();
|
|||
|
|
FontSize fontSize25 = new FontSize() { Val = 11D };
|
|||
|
|
Color color23 = new Color() { Rgb = "FF00B050" };
|
|||
|
|
FontName fontName25 = new FontName() { Val = "Segoe UI" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering25 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
|
|||
|
|
font25.Append(fontSize25);
|
|||
|
|
font25.Append(color23);
|
|||
|
|
font25.Append(fontName25);
|
|||
|
|
font25.Append(fontFamilyNumbering25);
|
|||
|
|
|
|||
|
|
Font font26 = new Font();
|
|||
|
|
FontSize fontSize26 = new FontSize() { Val = 11D };
|
|||
|
|
Color color24 = new Color() { Rgb = "FF0070C0" };
|
|||
|
|
FontName fontName26 = new FontName() { Val = "Segoe UI" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering26 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
|
|||
|
|
font26.Append(fontSize26);
|
|||
|
|
font26.Append(color24);
|
|||
|
|
font26.Append(fontName26);
|
|||
|
|
font26.Append(fontFamilyNumbering26);
|
|||
|
|
|
|||
|
|
Font font27 = new Font();
|
|||
|
|
FontSize fontSize27 = new FontSize() { Val = 8D };
|
|||
|
|
Color color25 = new Color() { Theme = (UInt32Value)1U };
|
|||
|
|
FontName fontName27 = new FontName() { Val = "Segoe UI" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering27 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
|
|||
|
|
font27.Append(fontSize27);
|
|||
|
|
font27.Append(color25);
|
|||
|
|
font27.Append(fontName27);
|
|||
|
|
font27.Append(fontFamilyNumbering27);
|
|||
|
|
|
|||
|
|
Font font28 = new Font();
|
|||
|
|
FontSize fontSize28 = new FontSize() { Val = 8D };
|
|||
|
|
Color color26 = new Color() { Rgb = "FF0070C0" };
|
|||
|
|
FontName fontName28 = new FontName() { Val = "Segoe UI" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering28 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
|
|||
|
|
font28.Append(fontSize28);
|
|||
|
|
font28.Append(color26);
|
|||
|
|
font28.Append(fontName28);
|
|||
|
|
font28.Append(fontFamilyNumbering28);
|
|||
|
|
|
|||
|
|
Font font29 = new Font();
|
|||
|
|
FontSize fontSize29 = new FontSize() { Val = 11D };
|
|||
|
|
Color color27 = new Color() { Rgb = "FFFF0000" };
|
|||
|
|
FontName fontName29 = new FontName() { Val = "Segoe UI" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering29 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
|
|||
|
|
font29.Append(fontSize29);
|
|||
|
|
font29.Append(color27);
|
|||
|
|
font29.Append(fontName29);
|
|||
|
|
font29.Append(fontFamilyNumbering29);
|
|||
|
|
|
|||
|
|
Font font30 = new Font();
|
|||
|
|
FontSize fontSize30 = new FontSize() { Val = 8D };
|
|||
|
|
Color color28 = new Color() { Rgb = "FFFF0000" };
|
|||
|
|
FontName fontName30 = new FontName() { Val = "Segoe UI" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering30 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
|
|||
|
|
font30.Append(fontSize30);
|
|||
|
|
font30.Append(color28);
|
|||
|
|
font30.Append(fontName30);
|
|||
|
|
font30.Append(fontFamilyNumbering30);
|
|||
|
|
|
|||
|
|
Font font31 = new Font();
|
|||
|
|
FontSize fontSize31 = new FontSize() { Val = 8D };
|
|||
|
|
Color color29 = new Color() { Rgb = "FF00B050" };
|
|||
|
|
FontName fontName31 = new FontName() { Val = "Segoe UI" };
|
|||
|
|
FontFamilyNumbering fontFamilyNumbering31 = new FontFamilyNumbering() { Val = 2 };
|
|||
|
|
|
|||
|
|
font31.Append(fontSize31);
|
|||
|
|
font31.Append(color29);
|
|||
|
|
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 = "FF00FF00" };
|
|||
|
|
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)23U };
|
|||
|
|
|
|||
|
|
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 color30 = new Color() { Theme = (UInt32Value)4U };
|
|||
|
|
|
|||
|
|
bottomBorder2.Append(color30);
|
|||
|
|
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 color31 = new Color() { Theme = (UInt32Value)4U, Tint = 0.499984740745262D };
|
|||
|
|
|
|||
|
|
bottomBorder3.Append(color31);
|
|||
|
|
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 color32 = new Color() { Theme = (UInt32Value)4U, Tint = 0.39997558519241921D };
|
|||
|
|
|
|||
|
|
bottomBorder4.Append(color32);
|
|||
|
|
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 color33 = new Color() { Rgb = "FF7F7F7F" };
|
|||
|
|
|
|||
|
|
leftBorder5.Append(color33);
|
|||
|
|
|
|||
|
|
RightBorder rightBorder5 = new RightBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color34 = new Color() { Rgb = "FF7F7F7F" };
|
|||
|
|
|
|||
|
|
rightBorder5.Append(color34);
|
|||
|
|
|
|||
|
|
TopBorder topBorder5 = new TopBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color35 = new Color() { Rgb = "FF7F7F7F" };
|
|||
|
|
|
|||
|
|
topBorder5.Append(color35);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder5 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color36 = new Color() { Rgb = "FF7F7F7F" };
|
|||
|
|
|
|||
|
|
bottomBorder5.Append(color36);
|
|||
|
|
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 color37 = new Color() { Rgb = "FF3F3F3F" };
|
|||
|
|
|
|||
|
|
leftBorder6.Append(color37);
|
|||
|
|
|
|||
|
|
RightBorder rightBorder6 = new RightBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color38 = new Color() { Rgb = "FF3F3F3F" };
|
|||
|
|
|
|||
|
|
rightBorder6.Append(color38);
|
|||
|
|
|
|||
|
|
TopBorder topBorder6 = new TopBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color39 = new Color() { Rgb = "FF3F3F3F" };
|
|||
|
|
|
|||
|
|
topBorder6.Append(color39);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder6 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color40 = new Color() { Rgb = "FF3F3F3F" };
|
|||
|
|
|
|||
|
|
bottomBorder6.Append(color40);
|
|||
|
|
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 color41 = new Color() { Rgb = "FFFF8001" };
|
|||
|
|
|
|||
|
|
bottomBorder7.Append(color41);
|
|||
|
|
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 color42 = new Color() { Rgb = "FF3F3F3F" };
|
|||
|
|
|
|||
|
|
leftBorder8.Append(color42);
|
|||
|
|
|
|||
|
|
RightBorder rightBorder8 = new RightBorder() { Style = BorderStyleValues.Double };
|
|||
|
|
Color color43 = new Color() { Rgb = "FF3F3F3F" };
|
|||
|
|
|
|||
|
|
rightBorder8.Append(color43);
|
|||
|
|
|
|||
|
|
TopBorder topBorder8 = new TopBorder() { Style = BorderStyleValues.Double };
|
|||
|
|
Color color44 = new Color() { Rgb = "FF3F3F3F" };
|
|||
|
|
|
|||
|
|
topBorder8.Append(color44);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder8 = new BottomBorder() { Style = BorderStyleValues.Double };
|
|||
|
|
Color color45 = new Color() { Rgb = "FF3F3F3F" };
|
|||
|
|
|
|||
|
|
bottomBorder8.Append(color45);
|
|||
|
|
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 color46 = new Color() { Rgb = "FFB2B2B2" };
|
|||
|
|
|
|||
|
|
leftBorder9.Append(color46);
|
|||
|
|
|
|||
|
|
RightBorder rightBorder9 = new RightBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color47 = new Color() { Rgb = "FFB2B2B2" };
|
|||
|
|
|
|||
|
|
rightBorder9.Append(color47);
|
|||
|
|
|
|||
|
|
TopBorder topBorder9 = new TopBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color48 = new Color() { Rgb = "FFB2B2B2" };
|
|||
|
|
|
|||
|
|
topBorder9.Append(color48);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder9 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color49 = new Color() { Rgb = "FFB2B2B2" };
|
|||
|
|
|
|||
|
|
bottomBorder9.Append(color49);
|
|||
|
|
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 color50 = new Color() { Theme = (UInt32Value)4U };
|
|||
|
|
|
|||
|
|
topBorder10.Append(color50);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder10 = new BottomBorder() { Style = BorderStyleValues.Double };
|
|||
|
|
Color color51 = new Color() { Theme = (UInt32Value)4U };
|
|||
|
|
|
|||
|
|
bottomBorder10.Append(color51);
|
|||
|
|
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 color52 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
topBorder11.Append(color52);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder11 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color53 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
bottomBorder11.Append(color53);
|
|||
|
|
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 color54 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
leftBorder12.Append(color54);
|
|||
|
|
RightBorder rightBorder12 = new RightBorder();
|
|||
|
|
|
|||
|
|
TopBorder topBorder12 = new TopBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color55 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
topBorder12.Append(color55);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder12 = new BottomBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color56 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
bottomBorder12.Append(color56);
|
|||
|
|
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 color57 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
topBorder13.Append(color57);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder13 = new BottomBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color58 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
bottomBorder13.Append(color58);
|
|||
|
|
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 color59 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
rightBorder14.Append(color59);
|
|||
|
|
|
|||
|
|
TopBorder topBorder14 = new TopBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color60 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
topBorder14.Append(color60);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder14 = new BottomBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color61 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
bottomBorder14.Append(color61);
|
|||
|
|
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 color62 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
leftBorder15.Append(color62);
|
|||
|
|
RightBorder rightBorder15 = new RightBorder();
|
|||
|
|
|
|||
|
|
TopBorder topBorder15 = new TopBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color63 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
topBorder15.Append(color63);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder15 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color64 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
bottomBorder15.Append(color64);
|
|||
|
|
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 color65 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
rightBorder16.Append(color65);
|
|||
|
|
|
|||
|
|
TopBorder topBorder16 = new TopBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color66 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
topBorder16.Append(color66);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder16 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color67 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
bottomBorder16.Append(color67);
|
|||
|
|
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.Thin };
|
|||
|
|
Color color68 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
bottomBorder17.Append(color68);
|
|||
|
|
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() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color69 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
leftBorder18.Append(color69);
|
|||
|
|
RightBorder rightBorder18 = new RightBorder();
|
|||
|
|
|
|||
|
|
TopBorder topBorder18 = new TopBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color70 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
topBorder18.Append(color70);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder18 = new BottomBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color71 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
bottomBorder18.Append(color71);
|
|||
|
|
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() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color72 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
rightBorder19.Append(color72);
|
|||
|
|
|
|||
|
|
TopBorder topBorder19 = new TopBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color73 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
topBorder19.Append(color73);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder19 = new BottomBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color74 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
bottomBorder19.Append(color74);
|
|||
|
|
DiagonalBorder diagonalBorder19 = new DiagonalBorder();
|
|||
|
|
|
|||
|
|
border19.Append(leftBorder19);
|
|||
|
|
border19.Append(rightBorder19);
|
|||
|
|
border19.Append(topBorder19);
|
|||
|
|
border19.Append(bottomBorder19);
|
|||
|
|
border19.Append(diagonalBorder19);
|
|||
|
|
|
|||
|
|
Border border20 = new Border();
|
|||
|
|
LeftBorder leftBorder20 = new LeftBorder();
|
|||
|
|
|
|||
|
|
RightBorder rightBorder20 = new RightBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color75 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
rightBorder20.Append(color75);
|
|||
|
|
|
|||
|
|
TopBorder topBorder20 = new TopBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color76 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
topBorder20.Append(color76);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder20 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color77 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
bottomBorder20.Append(color77);
|
|||
|
|
DiagonalBorder diagonalBorder20 = new DiagonalBorder();
|
|||
|
|
|
|||
|
|
border20.Append(leftBorder20);
|
|||
|
|
border20.Append(rightBorder20);
|
|||
|
|
border20.Append(topBorder20);
|
|||
|
|
border20.Append(bottomBorder20);
|
|||
|
|
border20.Append(diagonalBorder20);
|
|||
|
|
|
|||
|
|
Border border21 = new Border();
|
|||
|
|
|
|||
|
|
LeftBorder leftBorder21 = new LeftBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color78 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
leftBorder21.Append(color78);
|
|||
|
|
RightBorder rightBorder21 = new RightBorder();
|
|||
|
|
TopBorder topBorder21 = new TopBorder();
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder21 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color79 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
bottomBorder21.Append(color79);
|
|||
|
|
DiagonalBorder diagonalBorder21 = new DiagonalBorder();
|
|||
|
|
|
|||
|
|
border21.Append(leftBorder21);
|
|||
|
|
border21.Append(rightBorder21);
|
|||
|
|
border21.Append(topBorder21);
|
|||
|
|
border21.Append(bottomBorder21);
|
|||
|
|
border21.Append(diagonalBorder21);
|
|||
|
|
|
|||
|
|
Border border22 = new Border();
|
|||
|
|
|
|||
|
|
LeftBorder leftBorder22 = new LeftBorder() { Style = BorderStyleValues.Medium };
|
|||
|
|
Color color80 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
leftBorder22.Append(color80);
|
|||
|
|
RightBorder rightBorder22 = new RightBorder();
|
|||
|
|
|
|||
|
|
TopBorder topBorder22 = new TopBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color81 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
topBorder22.Append(color81);
|
|||
|
|
|
|||
|
|
BottomBorder bottomBorder22 = new BottomBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color82 = new Color() { Auto = true };
|
|||
|
|
|
|||
|
|
bottomBorder22.Append(color82);
|
|||
|
|
DiagonalBorder diagonalBorder22 = new DiagonalBorder();
|
|||
|
|
|
|||
|
|
border22.Append(leftBorder22);
|
|||
|
|
border22.Append(rightBorder22);
|
|||
|
|
border22.Append(topBorder22);
|
|||
|
|
border22.Append(bottomBorder22);
|
|||
|
|
border22.Append(diagonalBorder22);
|
|||
|
|
|
|||
|
|
Border border23 = new Border();
|
|||
|
|
LeftBorder leftBorder23 = new LeftBorder();
|
|||
|
|
RightBorder rightBorder23 = new RightBorder();
|
|||
|
|
|
|||
|
|
TopBorder topBorder23 = new TopBorder() { Style = BorderStyleValues.Thin };
|
|||
|
|
Color color83 = new Color() { Indexed = (UInt32Value)64U };
|
|||
|
|
|
|||
|
|
topBorder23.Append(color83);
|
|||
|
|
BottomBorder bottomBorder23 = new BottomBorder();
|
|||
|
|
DiagonalBorder diagonalBorder23 = new DiagonalBorder();
|
|||
|
|
|
|||
|
|
border23.Append(leftBorder23);
|
|||
|
|
border23.Append(rightBorder23);
|
|||
|
|
border23.Append(topBorder23);
|
|||
|
|
border23.Append(bottomBorder23);
|
|||
|
|
border23.Append(diagonalBorder23);
|
|||
|
|
|
|||
|
|
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);
|
|||
|
|
borders1.Append(border20);
|
|||
|
|
borders1.Append(border21);
|
|||
|
|
borders1.Append(border22);
|
|||
|
|
borders1.Append(border23);
|
|||
|
|
|
|||
|
|
CellStyleFormats cellStyleFormats1 = new CellStyleFormats() { Count = (UInt32Value)46U };
|
|||
|
|
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)19U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U };
|
|||
|
|
CellFormat cellFormat3 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U };
|
|||
|
|
CellFormat cellFormat4 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)2U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyFill = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat5 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)3U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)1U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat6 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)4U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)2U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat7 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)5U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)3U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat8 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)5U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyFill = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat9 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)6U, FillId = (UInt32Value)2U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat10 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)7U, FillId = (UInt32Value)3U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat11 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)8U, FillId = (UInt32Value)4U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat12 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)9U, FillId = (UInt32Value)5U, BorderId = (UInt32Value)4U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat13 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)10U, FillId = (UInt32Value)6U, BorderId = (UInt32Value)5U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat14 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)11U, FillId = (UInt32Value)6U, BorderId = (UInt32Value)4U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat15 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)12U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)6U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat16 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)13U, FillId = (UInt32Value)7U, BorderId = (UInt32Value)7U, ApplyNumberFormat = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat17 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)14U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyFill = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat18 = 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 cellFormat19 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)16U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)9U, ApplyNumberFormat = false, ApplyFill = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat20 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)9U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat21 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)10U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat22 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)11U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat23 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)12U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat24 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)13U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat25 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)14U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat26 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)15U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat27 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)16U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat28 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)17U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat29 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)18U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat30 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)19U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat31 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)20U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat32 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)21U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat33 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)22U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat34 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)23U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat35 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)24U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat36 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)25U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat37 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)26U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat38 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)27U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat39 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)28U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat40 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)29U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat41 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)30U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat42 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)31U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
CellFormat cellFormat43 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)17U, FillId = (UInt32Value)32U, BorderId = (UInt32Value)0U, ApplyNumberFormat = false, ApplyBorder = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
|
|||
|
|
CellFormat cellFormat44 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)21U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U };
|
|||
|
|
Alignment alignment1 = new Alignment() { Vertical = VerticalAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
cellFormat44.Append(alignment1);
|
|||
|
|
CellFormat cellFormat45 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U };
|
|||
|
|
CellFormat cellFormat46 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)1U, FillId = (UInt32Value)8U, BorderId = (UInt32Value)8U, ApplyNumberFormat = false, ApplyFont = false, ApplyAlignment = false, ApplyProtection = false };
|
|||
|
|
|
|||
|
|
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);
|
|||
|
|
cellStyleFormats1.Append(cellFormat46);
|
|||
|
|
|
|||
|
|
CellFormats cellFormats1 = new CellFormats() { Count = (UInt32Value)42U };
|
|||
|
|
CellFormat cellFormat47 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U };
|
|||
|
|
CellFormat cellFormat48 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true };
|
|||
|
|
CellFormat cellFormat49 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true };
|
|||
|
|
CellFormat cellFormat50 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)20U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)1U, ApplyFont = true, ApplyFill = true };
|
|||
|
|
|
|||
|
|
CellFormat cellFormat51 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)23U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment2 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat51.Append(alignment2);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat52 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)43U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment3 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat52.Append(alignment3);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat53 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyAlignment = true };
|
|||
|
|
Alignment alignment4 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat53.Append(alignment4);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat54 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)14U, FormatId = (UInt32Value)43U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment5 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
cellFormat54.Append(alignment5);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat55 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)10U, FormatId = (UInt32Value)44U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment6 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
cellFormat55.Append(alignment6);
|
|||
|
|
CellFormat cellFormat56 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)35U, BorderId = (UInt32Value)15U, FormatId = (UInt32Value)1U, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
|
|||
|
|
CellFormat cellFormat57 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)14U, FormatId = (UInt32Value)43U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment7 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
cellFormat57.Append(alignment7);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat58 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)34U, BorderId = (UInt32Value)10U, FormatId = (UInt32Value)44U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment8 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
cellFormat58.Append(alignment8);
|
|||
|
|
CellFormat cellFormat59 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)19U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)15U, FormatId = (UInt32Value)1U, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
|
|||
|
|
CellFormat cellFormat60 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)43U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment9 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
cellFormat60.Append(alignment9);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat61 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)1U, ApplyFont = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment10 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
cellFormat61.Append(alignment10);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat62 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)23U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)1U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment11 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
cellFormat62.Append(alignment11);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat63 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)1U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment12 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
cellFormat63.Append(alignment12);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat64 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)22U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)11U, FormatId = (UInt32Value)43U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment13 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
cellFormat64.Append(alignment13);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat65 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)13U, FormatId = (UInt32Value)1U, ApplyFont = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment14 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
cellFormat65.Append(alignment14);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat66 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)11U, FormatId = (UInt32Value)1U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment15 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat66.Append(alignment15);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat67 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)12U, FormatId = (UInt32Value)1U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment16 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat67.Append(alignment16);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat68 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)18U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)13U, FormatId = (UInt32Value)1U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment17 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat68.Append(alignment17);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat69 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)16U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment18 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, Indent = (UInt32Value)1U, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat69.Append(alignment18);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat70 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)10U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment19 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, Indent = (UInt32Value)1U, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat70.Append(alignment19);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat71 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)28U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment20 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat71.Append(alignment20);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat72 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)27U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment21 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat72.Append(alignment21);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat73 = new CellFormat() { NumberFormatId = (UInt32Value)4U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyNumberFormat = true, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment22 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat73.Append(alignment22);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat74 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)24U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment23 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat74.Append(alignment23);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat75 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)19U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment24 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, Indent = (UInt32Value)1U, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat75.Append(alignment24);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat76 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment25 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat76.Append(alignment25);
|
|||
|
|
CellFormat cellFormat77 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U };
|
|||
|
|
|
|||
|
|
CellFormat cellFormat78 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)20U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment26 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, Indent = (UInt32Value)1U, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat78.Append(alignment26);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat79 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)21U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment27 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, Indent = (UInt32Value)1U, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat79.Append(alignment27);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat80 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)22U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment28 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, Indent = (UInt32Value)1U, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat80.Append(alignment28);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat81 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)17U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment29 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat81.Append(alignment29);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat82 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)0U, FillId = (UInt32Value)0U, BorderId = (UInt32Value)18U, FormatId = (UInt32Value)0U, ApplyBorder = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment30 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat82.Append(alignment30);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat83 = new CellFormat() { NumberFormatId = (UInt32Value)164U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyNumberFormat = true, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment31 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat83.Append(alignment31);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat84 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)25U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment32 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat84.Append(alignment32);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat85 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)23U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment33 = new Alignment() { Horizontal = HorizontalAlignmentValues.Center, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat85.Append(alignment33);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat86 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)29U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment34 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat86.Append(alignment34);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat87 = new CellFormat() { NumberFormatId = (UInt32Value)164U, FontId = (UInt32Value)26U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyNumberFormat = true, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment35 = new Alignment() { Horizontal = HorizontalAlignmentValues.Right, Vertical = VerticalAlignmentValues.Center, Indent = (UInt32Value)1U, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat87.Append(alignment35);
|
|||
|
|
|
|||
|
|
CellFormat cellFormat88 = new CellFormat() { NumberFormatId = (UInt32Value)0U, FontId = (UInt32Value)30U, FillId = (UInt32Value)33U, BorderId = (UInt32Value)0U, FormatId = (UInt32Value)0U, ApplyFont = true, ApplyFill = true, ApplyAlignment = true };
|
|||
|
|
Alignment alignment36 = new Alignment() { Horizontal = HorizontalAlignmentValues.Left, Vertical = VerticalAlignmentValues.Center, ShrinkToFit = true };
|
|||
|
|
|
|||
|
|
cellFormat88.Append(alignment36);
|
|||
|
|
|
|||
|
|
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);
|
|||
|
|
|
|||
|
|
CellStyles cellStyles1 = new CellStyles() { Count = (UInt32Value)46U };
|
|||
|
|
CellStyle cellStyle1 = new CellStyle() { Name = "20% - Accent1 2", FormatId = (UInt32Value)20U };
|
|||
|
|
CellStyle cellStyle2 = new CellStyle() { Name = "20% - Accent2 2", FormatId = (UInt32Value)24U };
|
|||
|
|
CellStyle cellStyle3 = new CellStyle() { Name = "20% - Accent3 2", FormatId = (UInt32Value)28U };
|
|||
|
|
CellStyle cellStyle4 = new CellStyle() { Name = "20% - Accent4 2", FormatId = (UInt32Value)32U };
|
|||
|
|
CellStyle cellStyle5 = new CellStyle() { Name = "20% - Accent5 2", FormatId = (UInt32Value)36U };
|
|||
|
|
CellStyle cellStyle6 = new CellStyle() { Name = "20% - Accent6 2", FormatId = (UInt32Value)40U };
|
|||
|
|
CellStyle cellStyle7 = new CellStyle() { Name = "40% - Accent1 2", FormatId = (UInt32Value)21U };
|
|||
|
|
CellStyle cellStyle8 = new CellStyle() { Name = "40% - Accent2 2", FormatId = (UInt32Value)25U };
|
|||
|
|
CellStyle cellStyle9 = new CellStyle() { Name = "40% - Accent3 2", FormatId = (UInt32Value)29U };
|
|||
|
|
CellStyle cellStyle10 = new CellStyle() { Name = "40% - Accent4 2", FormatId = (UInt32Value)33U };
|
|||
|
|
CellStyle cellStyle11 = new CellStyle() { Name = "40% - Accent5 2", FormatId = (UInt32Value)37U };
|
|||
|
|
CellStyle cellStyle12 = new CellStyle() { Name = "40% - Accent6 2", FormatId = (UInt32Value)41U };
|
|||
|
|
CellStyle cellStyle13 = new CellStyle() { Name = "60% - Accent1 2", FormatId = (UInt32Value)22U };
|
|||
|
|
CellStyle cellStyle14 = new CellStyle() { Name = "60% - Accent2 2", FormatId = (UInt32Value)26U };
|
|||
|
|
CellStyle cellStyle15 = new CellStyle() { Name = "60% - Accent3 2", FormatId = (UInt32Value)30U };
|
|||
|
|
CellStyle cellStyle16 = new CellStyle() { Name = "60% - Accent4 2", FormatId = (UInt32Value)34U };
|
|||
|
|
CellStyle cellStyle17 = new CellStyle() { Name = "60% - Accent5 2", FormatId = (UInt32Value)38U };
|
|||
|
|
CellStyle cellStyle18 = new CellStyle() { Name = "60% - Accent6 2", FormatId = (UInt32Value)42U };
|
|||
|
|
CellStyle cellStyle19 = new CellStyle() { Name = "Accent1 2", FormatId = (UInt32Value)19U };
|
|||
|
|
CellStyle cellStyle20 = new CellStyle() { Name = "Accent2 2", FormatId = (UInt32Value)23U };
|
|||
|
|
CellStyle cellStyle21 = new CellStyle() { Name = "Accent3 2", FormatId = (UInt32Value)27U };
|
|||
|
|
CellStyle cellStyle22 = new CellStyle() { Name = "Accent4 2", FormatId = (UInt32Value)31U };
|
|||
|
|
CellStyle cellStyle23 = new CellStyle() { Name = "Accent5 2", FormatId = (UInt32Value)35U };
|
|||
|
|
CellStyle cellStyle24 = new CellStyle() { Name = "Accent6 2", FormatId = (UInt32Value)39U };
|
|||
|
|
CellStyle cellStyle25 = new CellStyle() { Name = "Bad 2", FormatId = (UInt32Value)9U };
|
|||
|
|
CellStyle cellStyle26 = new CellStyle() { Name = "Calculation 2", FormatId = (UInt32Value)13U };
|
|||
|
|
CellStyle cellStyle27 = new CellStyle() { Name = "Check Cell 2", FormatId = (UInt32Value)15U };
|
|||
|
|
CellStyle cellStyle28 = new CellStyle() { Name = "Explanatory Text 2", FormatId = (UInt32Value)17U };
|
|||
|
|
CellStyle cellStyle29 = new CellStyle() { Name = "Good 2", FormatId = (UInt32Value)8U };
|
|||
|
|
CellStyle cellStyle30 = new CellStyle() { Name = "Heading 1 2", FormatId = (UInt32Value)4U };
|
|||
|
|
CellStyle cellStyle31 = new CellStyle() { Name = "Heading 2 2", FormatId = (UInt32Value)5U };
|
|||
|
|
CellStyle cellStyle32 = new CellStyle() { Name = "Heading 3 2", FormatId = (UInt32Value)6U };
|
|||
|
|
CellStyle cellStyle33 = new CellStyle() { Name = "Heading 4 2", FormatId = (UInt32Value)7U };
|
|||
|
|
CellStyle cellStyle34 = new CellStyle() { Name = "Input 2", FormatId = (UInt32Value)11U };
|
|||
|
|
CellStyle cellStyle35 = new CellStyle() { Name = "Linked Cell 2", FormatId = (UInt32Value)14U };
|
|||
|
|
CellStyle cellStyle36 = new CellStyle() { Name = "Neutral 2", FormatId = (UInt32Value)10U };
|
|||
|
|
CellStyle cellStyle37 = new CellStyle() { Name = "Normal", FormatId = (UInt32Value)0U, BuiltinId = (UInt32Value)0U };
|
|||
|
|
CellStyle cellStyle38 = new CellStyle() { Name = "Normal 2", FormatId = (UInt32Value)44U };
|
|||
|
|
CellStyle cellStyle39 = new CellStyle() { Name = "Normal 3", FormatId = (UInt32Value)43U };
|
|||
|
|
CellStyle cellStyle40 = new CellStyle() { Name = "Normal 4", FormatId = (UInt32Value)2U };
|
|||
|
|
CellStyle cellStyle41 = new CellStyle() { Name = "Normal 5", FormatId = (UInt32Value)1U };
|
|||
|
|
CellStyle cellStyle42 = new CellStyle() { Name = "Note 2", FormatId = (UInt32Value)45U };
|
|||
|
|
CellStyle cellStyle43 = new CellStyle() { Name = "Output 2", FormatId = (UInt32Value)12U };
|
|||
|
|
CellStyle cellStyle44 = new CellStyle() { Name = "Title 2", FormatId = (UInt32Value)3U };
|
|||
|
|
CellStyle cellStyle45 = new CellStyle() { Name = "Total 2", FormatId = (UInt32Value)18U };
|
|||
|
|
CellStyle cellStyle46 = new CellStyle() { Name = "Warning Text 2", FormatId = (UInt32Value)16U };
|
|||
|
|
|
|||
|
|
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);
|
|||
|
|
cellStyles1.Append(cellStyle46);
|
|||
|
|
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 color84 = new Color() { Rgb = "FF00FF00" };
|
|||
|
|
Color color85 = new Color() { Rgb = "FF66FF66" };
|
|||
|
|
|
|||
|
|
mruColors1.Append(color84);
|
|||
|
|
mruColors1.Append(color85);
|
|||
|
|
|
|||
|
|
colors1.Append(mruColors1);
|
|||
|
|
|
|||
|
|
stylesheet1.Append(numberingFormats1);
|
|||
|
|
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);
|
|||
|
|
|
|||
|
|
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 rgbColorModelHex9 = new A.RgbColorModelHex() { Val = "1F497D" };
|
|||
|
|
|
|||
|
|
dark2Color1.Append(rgbColorModelHex9);
|
|||
|
|
|
|||
|
|
A.Light2Color light2Color1 = new A.Light2Color();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex10 = new A.RgbColorModelHex() { Val = "EEECE1" };
|
|||
|
|
|
|||
|
|
light2Color1.Append(rgbColorModelHex10);
|
|||
|
|
|
|||
|
|
A.Accent1Color accent1Color1 = new A.Accent1Color();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex11 = new A.RgbColorModelHex() { Val = "4F81BD" };
|
|||
|
|
|
|||
|
|
accent1Color1.Append(rgbColorModelHex11);
|
|||
|
|
|
|||
|
|
A.Accent2Color accent2Color1 = new A.Accent2Color();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex12 = new A.RgbColorModelHex() { Val = "C0504D" };
|
|||
|
|
|
|||
|
|
accent2Color1.Append(rgbColorModelHex12);
|
|||
|
|
|
|||
|
|
A.Accent3Color accent3Color1 = new A.Accent3Color();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex13 = new A.RgbColorModelHex() { Val = "9BBB59" };
|
|||
|
|
|
|||
|
|
accent3Color1.Append(rgbColorModelHex13);
|
|||
|
|
|
|||
|
|
A.Accent4Color accent4Color1 = new A.Accent4Color();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex14 = new A.RgbColorModelHex() { Val = "8064A2" };
|
|||
|
|
|
|||
|
|
accent4Color1.Append(rgbColorModelHex14);
|
|||
|
|
|
|||
|
|
A.Accent5Color accent5Color1 = new A.Accent5Color();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex15 = new A.RgbColorModelHex() { Val = "4BACC6" };
|
|||
|
|
|
|||
|
|
accent5Color1.Append(rgbColorModelHex15);
|
|||
|
|
|
|||
|
|
A.Accent6Color accent6Color1 = new A.Accent6Color();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex16 = new A.RgbColorModelHex() { Val = "F79646" };
|
|||
|
|
|
|||
|
|
accent6Color1.Append(rgbColorModelHex16);
|
|||
|
|
|
|||
|
|
A.Hyperlink hyperlink1 = new A.Hyperlink();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex17 = new A.RgbColorModelHex() { Val = "0000FF" };
|
|||
|
|
|
|||
|
|
hyperlink1.Append(rgbColorModelHex17);
|
|||
|
|
|
|||
|
|
A.FollowedHyperlinkColor followedHyperlinkColor1 = new A.FollowedHyperlinkColor();
|
|||
|
|
A.RgbColorModelHex rgbColorModelHex18 = new A.RgbColorModelHex() { Val = "800080" };
|
|||
|
|
|
|||
|
|
followedHyperlinkColor1.Append(rgbColorModelHex18);
|
|||
|
|
|
|||
|
|
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 fontScheme20 = new A.FontScheme() { Name = "Office" };
|
|||
|
|
|
|||
|
|
A.MajorFont majorFont1 = new A.MajorFont();
|
|||
|
|
A.LatinFont latinFont4 = new A.LatinFont() { Typeface = "Cambria" };
|
|||
|
|
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" };
|
|||
|
|
|
|||
|
|
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);
|
|||
|
|
|
|||
|
|
A.MinorFont minorFont1 = new A.MinorFont();
|
|||
|
|
A.LatinFont latinFont5 = new A.LatinFont() { Typeface = "Calibri" };
|
|||
|
|
A.EastAsianFont eastAsianFont5 = new A.EastAsianFont() { Typeface = "" };
|
|||
|
|
A.ComplexScriptFont complexScriptFont2 = new A.ComplexScriptFont() { Typeface = "" };
|
|||
|
|
A.SupplementalFont supplementalFont30 = new A.SupplementalFont() { Script = "Jpan", Typeface = "MS Pゴシック" };
|
|||
|
|
A.SupplementalFont supplementalFont31 = new A.SupplementalFont() { Script = "Hang", Typeface = "맑은 고딕" };
|
|||
|
|
A.SupplementalFont supplementalFont32 = new A.SupplementalFont() { Script = "Hans", Typeface = "宋体" };
|
|||
|
|
A.SupplementalFont supplementalFont33 = new A.SupplementalFont() { Script = "Hant", Typeface = "新細明體" };
|
|||
|
|
A.SupplementalFont supplementalFont34 = new A.SupplementalFont() { Script = "Arab", Typeface = "Arial" };
|
|||
|
|
A.SupplementalFont supplementalFont35 = new A.SupplementalFont() { Script = "Hebr", Typeface = "Arial" };
|
|||
|
|
A.SupplementalFont supplementalFont36 = new A.SupplementalFont() { Script = "Thai", Typeface = "Tahoma" };
|
|||
|
|
A.SupplementalFont supplementalFont37 = new A.SupplementalFont() { Script = "Ethi", Typeface = "Nyala" };
|
|||
|
|
A.SupplementalFont supplementalFont38 = new A.SupplementalFont() { Script = "Beng", Typeface = "Vrinda" };
|
|||
|
|
A.SupplementalFont supplementalFont39 = new A.SupplementalFont() { Script = "Gujr", Typeface = "Shruti" };
|
|||
|
|
A.SupplementalFont supplementalFont40 = new A.SupplementalFont() { Script = "Khmr", Typeface = "DaunPenh" };
|
|||
|
|
A.SupplementalFont supplementalFont41 = new A.SupplementalFont() { Script = "Knda", Typeface = "Tunga" };
|
|||
|
|
A.SupplementalFont supplementalFont42 = new A.SupplementalFont() { Script = "Guru", Typeface = "Raavi" };
|
|||
|
|
A.SupplementalFont supplementalFont43 = new A.SupplementalFont() { Script = "Cans", Typeface = "Euphemia" };
|
|||
|
|
A.SupplementalFont supplementalFont44 = new A.SupplementalFont() { Script = "Cher", Typeface = "Plantagenet Cherokee" };
|
|||
|
|
A.SupplementalFont supplementalFont45 = new A.SupplementalFont() { Script = "Yiii", Typeface = "Microsoft Yi Baiti" };
|
|||
|
|
A.SupplementalFont supplementalFont46 = new A.SupplementalFont() { Script = "Tibt", Typeface = "Microsoft Himalaya" };
|
|||
|
|
A.SupplementalFont supplementalFont47 = new A.SupplementalFont() { Script = "Thaa", Typeface = "MV Boli" };
|
|||
|
|
A.SupplementalFont supplementalFont48 = new A.SupplementalFont() { Script = "Deva", Typeface = "Mangal" };
|
|||
|
|
A.SupplementalFont supplementalFont49 = new A.SupplementalFont() { Script = "Telu", Typeface = "Gautami" };
|
|||
|
|
A.SupplementalFont supplementalFont50 = new A.SupplementalFont() { Script = "Taml", Typeface = "Latha" };
|
|||
|
|
A.SupplementalFont supplementalFont51 = new A.SupplementalFont() { Script = "Syrc", Typeface = "Estrangelo Edessa" };
|
|||
|
|
A.SupplementalFont supplementalFont52 = new A.SupplementalFont() { Script = "Orya", Typeface = "Kalinga" };
|
|||
|
|
A.SupplementalFont supplementalFont53 = new A.SupplementalFont() { Script = "Mlym", Typeface = "Kartika" };
|
|||
|
|
A.SupplementalFont supplementalFont54 = new A.SupplementalFont() { Script = "Laoo", Typeface = "DokChampa" };
|
|||
|
|
A.SupplementalFont supplementalFont55 = new A.SupplementalFont() { Script = "Sinh", Typeface = "Iskoola Pota" };
|
|||
|
|
A.SupplementalFont supplementalFont56 = new A.SupplementalFont() { Script = "Mong", Typeface = "Mongolian Baiti" };
|
|||
|
|
A.SupplementalFont supplementalFont57 = new A.SupplementalFont() { Script = "Viet", Typeface = "Arial" };
|
|||
|
|
A.SupplementalFont supplementalFont58 = new A.SupplementalFont() { Script = "Uigh", Typeface = "Microsoft Uighur" };
|
|||
|
|
|
|||
|
|
minorFont1.Append(latinFont5);
|
|||
|
|
minorFont1.Append(eastAsianFont5);
|
|||
|
|
minorFont1.Append(complexScriptFont2);
|
|||
|
|
minorFont1.Append(supplementalFont30);
|
|||
|
|
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);
|
|||
|
|
|
|||
|
|
fontScheme20.Append(majorFont1);
|
|||
|
|
fontScheme20.Append(minorFont1);
|
|||
|
|
|
|||
|
|
A.FormatScheme formatScheme1 = new A.FormatScheme() { Name = "Office" };
|
|||
|
|
|
|||
|
|
A.FillStyleList fillStyleList1 = new A.FillStyleList();
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill16 = new A.SolidFill();
|
|||
|
|
A.SchemeColor schemeColor8 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
|
|||
|
|
solidFill16.Append(schemeColor8);
|
|||
|
|
|
|||
|
|
A.GradientFill gradientFill1 = new A.GradientFill() { RotateWithShape = true };
|
|||
|
|
|
|||
|
|
A.GradientStopList gradientStopList1 = new A.GradientStopList();
|
|||
|
|
|
|||
|
|
A.GradientStop gradientStop1 = new A.GradientStop() { Position = 0 };
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor9 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
A.Tint tint1 = new A.Tint() { Val = 50000 };
|
|||
|
|
A.SaturationModulation saturationModulation1 = new A.SaturationModulation() { Val = 300000 };
|
|||
|
|
|
|||
|
|
schemeColor9.Append(tint1);
|
|||
|
|
schemeColor9.Append(saturationModulation1);
|
|||
|
|
|
|||
|
|
gradientStop1.Append(schemeColor9);
|
|||
|
|
|
|||
|
|
A.GradientStop gradientStop2 = new A.GradientStop() { Position = 35000 };
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor10 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
A.Tint tint2 = new A.Tint() { Val = 37000 };
|
|||
|
|
A.SaturationModulation saturationModulation2 = new A.SaturationModulation() { Val = 300000 };
|
|||
|
|
|
|||
|
|
schemeColor10.Append(tint2);
|
|||
|
|
schemeColor10.Append(saturationModulation2);
|
|||
|
|
|
|||
|
|
gradientStop2.Append(schemeColor10);
|
|||
|
|
|
|||
|
|
A.GradientStop gradientStop3 = new A.GradientStop() { Position = 100000 };
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor11 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
A.Tint tint3 = new A.Tint() { Val = 15000 };
|
|||
|
|
A.SaturationModulation saturationModulation3 = new A.SaturationModulation() { Val = 350000 };
|
|||
|
|
|
|||
|
|
schemeColor11.Append(tint3);
|
|||
|
|
schemeColor11.Append(saturationModulation3);
|
|||
|
|
|
|||
|
|
gradientStop3.Append(schemeColor11);
|
|||
|
|
|
|||
|
|
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 schemeColor12 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
A.Shade shade1 = new A.Shade() { Val = 51000 };
|
|||
|
|
A.SaturationModulation saturationModulation4 = new A.SaturationModulation() { Val = 130000 };
|
|||
|
|
|
|||
|
|
schemeColor12.Append(shade1);
|
|||
|
|
schemeColor12.Append(saturationModulation4);
|
|||
|
|
|
|||
|
|
gradientStop4.Append(schemeColor12);
|
|||
|
|
|
|||
|
|
A.GradientStop gradientStop5 = new A.GradientStop() { Position = 80000 };
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor13 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
A.Shade shade2 = new A.Shade() { Val = 93000 };
|
|||
|
|
A.SaturationModulation saturationModulation5 = new A.SaturationModulation() { Val = 130000 };
|
|||
|
|
|
|||
|
|
schemeColor13.Append(shade2);
|
|||
|
|
schemeColor13.Append(saturationModulation5);
|
|||
|
|
|
|||
|
|
gradientStop5.Append(schemeColor13);
|
|||
|
|
|
|||
|
|
A.GradientStop gradientStop6 = new A.GradientStop() { Position = 100000 };
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor14 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
A.Shade shade3 = new A.Shade() { Val = 94000 };
|
|||
|
|
A.SaturationModulation saturationModulation6 = new A.SaturationModulation() { Val = 135000 };
|
|||
|
|
|
|||
|
|
schemeColor14.Append(shade3);
|
|||
|
|
schemeColor14.Append(saturationModulation6);
|
|||
|
|
|
|||
|
|
gradientStop6.Append(schemeColor14);
|
|||
|
|
|
|||
|
|
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(solidFill16);
|
|||
|
|
fillStyleList1.Append(gradientFill1);
|
|||
|
|
fillStyleList1.Append(gradientFill2);
|
|||
|
|
|
|||
|
|
A.LineStyleList lineStyleList1 = new A.LineStyleList();
|
|||
|
|
|
|||
|
|
A.Outline outline12 = new A.Outline() { Width = 9525, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill17 = new A.SolidFill();
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor15 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
A.Shade shade4 = new A.Shade() { Val = 95000 };
|
|||
|
|
A.SaturationModulation saturationModulation7 = new A.SaturationModulation() { Val = 105000 };
|
|||
|
|
|
|||
|
|
schemeColor15.Append(shade4);
|
|||
|
|
schemeColor15.Append(saturationModulation7);
|
|||
|
|
|
|||
|
|
solidFill17.Append(schemeColor15);
|
|||
|
|
A.PresetDash presetDash1 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
|
|||
|
|
|
|||
|
|
outline12.Append(solidFill17);
|
|||
|
|
outline12.Append(presetDash1);
|
|||
|
|
|
|||
|
|
A.Outline outline13 = new A.Outline() { Width = 25400, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill18 = new A.SolidFill();
|
|||
|
|
A.SchemeColor schemeColor16 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
|
|||
|
|
solidFill18.Append(schemeColor16);
|
|||
|
|
A.PresetDash presetDash2 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
|
|||
|
|
|
|||
|
|
outline13.Append(solidFill18);
|
|||
|
|
outline13.Append(presetDash2);
|
|||
|
|
|
|||
|
|
A.Outline outline14 = new A.Outline() { Width = 38100, CapType = A.LineCapValues.Flat, CompoundLineType = A.CompoundLineValues.Single, Alignment = A.PenAlignmentValues.Center };
|
|||
|
|
|
|||
|
|
A.SolidFill solidFill19 = new A.SolidFill();
|
|||
|
|
A.SchemeColor schemeColor17 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
|
|||
|
|
solidFill19.Append(schemeColor17);
|
|||
|
|
A.PresetDash presetDash3 = new A.PresetDash() { Val = A.PresetLineDashValues.Solid };
|
|||
|
|
|
|||
|
|
outline14.Append(solidFill19);
|
|||
|
|
outline14.Append(presetDash3);
|
|||
|
|
|
|||
|
|
lineStyleList1.Append(outline12);
|
|||
|
|
lineStyleList1.Append(outline13);
|
|||
|
|
lineStyleList1.Append(outline14);
|
|||
|
|
|
|||
|
|
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 rgbColorModelHex19 = new A.RgbColorModelHex() { Val = "000000" };
|
|||
|
|
A.Alpha alpha1 = new A.Alpha() { Val = 38000 };
|
|||
|
|
|
|||
|
|
rgbColorModelHex19.Append(alpha1);
|
|||
|
|
|
|||
|
|
outerShadow1.Append(rgbColorModelHex19);
|
|||
|
|
|
|||
|
|
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 rgbColorModelHex20 = new A.RgbColorModelHex() { Val = "000000" };
|
|||
|
|
A.Alpha alpha2 = new A.Alpha() { Val = 35000 };
|
|||
|
|
|
|||
|
|
rgbColorModelHex20.Append(alpha2);
|
|||
|
|
|
|||
|
|
outerShadow2.Append(rgbColorModelHex20);
|
|||
|
|
|
|||
|
|
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 rgbColorModelHex21 = new A.RgbColorModelHex() { Val = "000000" };
|
|||
|
|
A.Alpha alpha3 = new A.Alpha() { Val = 35000 };
|
|||
|
|
|
|||
|
|
rgbColorModelHex21.Append(alpha3);
|
|||
|
|
|
|||
|
|
outerShadow3.Append(rgbColorModelHex21);
|
|||
|
|
|
|||
|
|
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 solidFill20 = new A.SolidFill();
|
|||
|
|
A.SchemeColor schemeColor18 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
|
|||
|
|
solidFill20.Append(schemeColor18);
|
|||
|
|
|
|||
|
|
A.GradientFill gradientFill3 = new A.GradientFill() { RotateWithShape = true };
|
|||
|
|
|
|||
|
|
A.GradientStopList gradientStopList3 = new A.GradientStopList();
|
|||
|
|
|
|||
|
|
A.GradientStop gradientStop7 = new A.GradientStop() { Position = 0 };
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor19 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
A.Tint tint4 = new A.Tint() { Val = 40000 };
|
|||
|
|
A.SaturationModulation saturationModulation8 = new A.SaturationModulation() { Val = 350000 };
|
|||
|
|
|
|||
|
|
schemeColor19.Append(tint4);
|
|||
|
|
schemeColor19.Append(saturationModulation8);
|
|||
|
|
|
|||
|
|
gradientStop7.Append(schemeColor19);
|
|||
|
|
|
|||
|
|
A.GradientStop gradientStop8 = new A.GradientStop() { Position = 40000 };
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor20 = 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 };
|
|||
|
|
|
|||
|
|
schemeColor20.Append(tint5);
|
|||
|
|
schemeColor20.Append(shade5);
|
|||
|
|
schemeColor20.Append(saturationModulation9);
|
|||
|
|
|
|||
|
|
gradientStop8.Append(schemeColor20);
|
|||
|
|
|
|||
|
|
A.GradientStop gradientStop9 = new A.GradientStop() { Position = 100000 };
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor21 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
A.Shade shade6 = new A.Shade() { Val = 20000 };
|
|||
|
|
A.SaturationModulation saturationModulation10 = new A.SaturationModulation() { Val = 255000 };
|
|||
|
|
|
|||
|
|
schemeColor21.Append(shade6);
|
|||
|
|
schemeColor21.Append(saturationModulation10);
|
|||
|
|
|
|||
|
|
gradientStop9.Append(schemeColor21);
|
|||
|
|
|
|||
|
|
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 schemeColor22 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
A.Tint tint6 = new A.Tint() { Val = 80000 };
|
|||
|
|
A.SaturationModulation saturationModulation11 = new A.SaturationModulation() { Val = 300000 };
|
|||
|
|
|
|||
|
|
schemeColor22.Append(tint6);
|
|||
|
|
schemeColor22.Append(saturationModulation11);
|
|||
|
|
|
|||
|
|
gradientStop10.Append(schemeColor22);
|
|||
|
|
|
|||
|
|
A.GradientStop gradientStop11 = new A.GradientStop() { Position = 100000 };
|
|||
|
|
|
|||
|
|
A.SchemeColor schemeColor23 = new A.SchemeColor() { Val = A.SchemeColorValues.PhColor };
|
|||
|
|
A.Shade shade7 = new A.Shade() { Val = 30000 };
|
|||
|
|
A.SaturationModulation saturationModulation12 = new A.SaturationModulation() { Val = 200000 };
|
|||
|
|
|
|||
|
|
schemeColor23.Append(shade7);
|
|||
|
|
schemeColor23.Append(saturationModulation12);
|
|||
|
|
|
|||
|
|
gradientStop11.Append(schemeColor23);
|
|||
|
|
|
|||
|
|
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(solidFill20);
|
|||
|
|
backgroundFillStyleList1.Append(gradientFill3);
|
|||
|
|
backgroundFillStyleList1.Append(gradientFill4);
|
|||
|
|
|
|||
|
|
formatScheme1.Append(fillStyleList1);
|
|||
|
|
formatScheme1.Append(lineStyleList1);
|
|||
|
|
formatScheme1.Append(effectStyleList1);
|
|||
|
|
formatScheme1.Append(backgroundFillStyleList1);
|
|||
|
|
|
|||
|
|
themeElements1.Append(colorScheme1);
|
|||
|
|
themeElements1.Append(fontScheme20);
|
|||
|
|
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-04-08T23:46:23Z", System.Xml.XmlDateTimeSerializationMode.RoundtripKind);
|
|||
|
|
document.PackageProperties.Modified = System.Xml.XmlConvert.ToDateTime("2013-04-12T22:40:10Z", System.Xml.XmlDateTimeSerializationMode.RoundtripKind);
|
|||
|
|
document.PackageProperties.LastModifiedBy = "Dan McFadden";
|
|||
|
|
document.PackageProperties.LastPrinted = System.Xml.XmlConvert.ToDateTime("2013-04-09T18:23:40Z", System.Xml.XmlDateTimeSerializationMode.RoundtripKind);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#region Binary Data
|
|||
|
|
private string spreadsheetPrinterSettingsPart1Data = "QwB1AHQAZQBQAEQARgAgAFcAcgBpAHQAZQByAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAbcAIQDU++AAQEACQDqCm8IZAABAA8AWAICAAEAWAIDAAEATABlAHQAdABlAHIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBSSVbiMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAQJxAnECcAABAnAAAAAAAAAACwAIQDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAABAAXEsDAGhDBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdaxebQUAAAADAAAA/wD/AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAACwAAAAU01USgAAAAAQAKAAQwB1AHQAZQBQAEQARgAgAFcAcgBpAHQAZQByAAAAUmVzb2x1dGlvbgA2MDBkcGkAUGFnZVNpemUATGV0dGVyAFBhZ2VSZWdpb24AAExlYWRpbmdFZGdlAABJbnB1dFNsb3QAT25seU9uZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==";
|
|||
|
|
|
|||
|
|
private string spreadsheetPrinterSettingsPart2Data = "QwB1AHQAZQBQAEQARgAgAFcAcgBpAHQAZQByAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAbcAIQDU++AAQEACQDqCm8IZAABAA8AWAICAAEAWAIDAAEATABlAHQAdABlAHIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBSSVbiMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAQJxAnECcAABAnAAAAAAAAAACwAIQDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAABAAXEsDAGhDBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdaxebQUAAAADAAAA/wD/AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAACwAAAAU01USgAAAAAQAKAAQwB1AHQAZQBQAEQARgAgAFcAcgBpAHQAZQByAAAAUmVzb2x1dGlvbgA2MDBkcGkAUGFnZVNpemUATGV0dGVyAFBhZ2VSZWdpb24AAExlYWRpbmdFZGdlAABJbnB1dFNsb3QAT25seU9uZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==";
|
|||
|
|
|
|||
|
|
private System.IO.Stream GetBinaryDataStream(string base64String)
|
|||
|
|
{
|
|||
|
|
return new System.IO.MemoryStream(System.Convert.FromBase64String(base64String));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|