-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNestedObjects.cs
243 lines (213 loc) · 8.85 KB
/
NestedObjects.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
#region Copyright Syncfusion Inc. 2001-2019.
// Copyright Syncfusion Inc. 2001-2019. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// licensing@syncfusion.com. Any infringement will be prosecuted under
// applicable laws.
#endregion
using Syncfusion.Licensing;
using Syncfusion.XlsIO;
using System;
using System.Collections.Generic;
using System.IO;
using System.Windows.Forms;
using System.Xml.Serialization;
namespace ImportNestedCollection
{
public partial class NestedObjects : Form
{
public NestedObjects()
{
InitializeComponent();
this.layoutOptions.SelectedIndex = 0;
this.groupOptionGrpBox.Enabled = false;
this.expandRadioBtn.Checked = true;
this.levelTxtBox.Text = "1";
}
private void createExcelBtn_Click(object sender, EventArgs e)
{
ExcelEngine excelEngine = new ExcelEngine();
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Excel2016;
IWorkbook workbook = excelEngine.Excel.Workbooks.Create(1);
IWorksheet worksheet = workbook.Worksheets[0];
IList<Brand> vehicles = GetVehicleDetails();
ExcelImportDataOptions importDataOptions = new ExcelImportDataOptions();
//Imports from 4th row
importDataOptions.FirstRow = 4;
//Set layout options
if (layoutOptions.SelectedIndex == 0)
importDataOptions.NestedDataLayoutOptions = ExcelNestedDataLayoutOptions.Default;
else if (layoutOptions.SelectedIndex == 1)
importDataOptions.NestedDataLayoutOptions = ExcelNestedDataLayoutOptions.Merge;
else if (layoutOptions.SelectedIndex == 2)
importDataOptions.NestedDataLayoutOptions = ExcelNestedDataLayoutOptions.Repeat;
//Set grouping option
if (groupChkBox.Checked)
{
if (expandRadioBtn.Checked)
{
importDataOptions.NestedDataGroupOptions = ExcelNestedDataGroupOptions.Expand;
}
else if (collapseRadioBtn.Checked)
{
importDataOptions.NestedDataGroupOptions = ExcelNestedDataGroupOptions.Collapse;
if (levelTxtBox.Text != string.Empty)
{
importDataOptions.CollapseLevel = int.Parse(levelTxtBox.Text);
}
}
}
//Import data from the nested collection, vehicles
worksheet.ImportData(vehicles, importDataOptions);
string fileName = @"ImportData.xlsx";
#region Define Styles
//Create global styles to format cells
IStyle pageHeader = workbook.Styles.Add("PageHeaderStyle");
IStyle tableHeader = workbook.Styles.Add("TableHeaderStyle");
pageHeader.Font.FontName = "Calibri";
pageHeader.Font.Size = 16;
pageHeader.Font.Bold = true;
pageHeader.Color = System.Drawing.Color.FromArgb(0, 146, 208, 80);
pageHeader.HorizontalAlignment = ExcelHAlign.HAlignCenter;
pageHeader.VerticalAlignment = ExcelVAlign.VAlignCenter;
tableHeader.Font.Bold = true;
tableHeader.Font.FontName = "Calibri";
tableHeader.Color = System.Drawing.Color.FromArgb(0, 146, 208, 80);
#endregion
#region Apply Styles
// Apply style to headers
worksheet["A1:C2"].Merge();
worksheet["A1"].Text = "Automobile Brands in the US";
worksheet["A1"].CellStyle = pageHeader;
worksheet["A4:C4"].CellStyle = tableHeader;
worksheet["A1:C1"].CellStyle.Font.Bold = true;
worksheet.UsedRange.AutofitColumns();
#endregion
workbook.SaveAs(fileName);
workbook.Close();
excelEngine.Dispose();
//Message box confirmation to view the created document.
if (MessageBox.Show("Do you want to view the Excel file?", "File has been created", MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes)
{
try
{
System.Diagnostics.Process.Start(fileName);
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
}
}
#region Helper Methods
//Helper Method
private IList<Brand> GetVehicleDetails()
{
XmlSerializer deserializer = new XmlSerializer(typeof(BrandObjects));
//Read data from XML file.
TextReader textReader = new StreamReader(@"..\..\Data\ExportData.xml");
BrandObjects brands = (BrandObjects)deserializer.Deserialize(textReader);
//Initialize parent collection to add data from XML file.
List<Brand> list = new List<Brand>();
string brandName = brands.BrandObject[0].BrandName;
string vehicleType = brands.BrandObject[0].VehicleType;
string modelName = brands.BrandObject[0].ModelName;
//Parent class
Brand brand = new Brand(brandName);
brand.VehicleTypes = new List<VehicleType>();
VehicleType vehicle = new VehicleType(vehicleType);
vehicle.Models = new List<Model>();
Model model = new Model(modelName);
brand.VehicleTypes.Add(vehicle);
list.Add(brand);
foreach (BrandObject brandObj in brands.BrandObject)
{
if (brandName == brandObj.BrandName)
{
if (vehicleType == brandObj.VehicleType)
{
vehicle.Models.Add(new Model(brandObj.ModelName));
continue;
}
else
{
vehicle = new VehicleType(brandObj.VehicleType);
vehicle.Models = new List<Model>();
vehicle.Models.Add(new Model(brandObj.ModelName));
brand.VehicleTypes.Add(vehicle);
vehicleType = brandObj.VehicleType;
}
continue;
}
else
{
brand = new Brand(brandObj.BrandName);
vehicle = new VehicleType(brandObj.VehicleType);
vehicle.Models = new List<Model>();
vehicle.Models.Add(new Model(brandObj.ModelName));
brand.VehicleTypes = new List<VehicleType>();
brand.VehicleTypes.Add(vehicle);
vehicleType = brandObj.VehicleType;
list.Add(brand);
brandName = brandObj.BrandName;
}
}
textReader.Close();
return list;
}
#endregion
#region Initialize
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
SyncfusionLicenseProvider.RegisterLicense(DemoCommon.FindLicenseKey());
Application.EnableVisualStyles();
Application.Run(new NestedObjects());
}
#endregion
private void GroupOptions(object sender, EventArgs e)
{
this.groupOptionGrpBox.Enabled = this.groupChkBox.Checked;
}
private void ExpandCollapse(object sender, EventArgs e)
{
this.levelTxtBox.Enabled = this.collapseRadioBtn.Checked;
}
private void levelTxtBox_TextChanged(object sender, EventArgs e)
{
int level = 0;
if (!(int.TryParse(levelTxtBox.Text, out level) && level > 0 && level < 9))
{
MessageBox.Show("Please enter the level from 1 to 8");
}
}
}
/// <summary>
/// Represents a class that is used to find the licensing file for Syncfusion controls.
/// </summary>
public class DemoCommon
{
/// <summary>
/// Finds the license key from the Common folder.
/// </summary>
/// <returns>Returns the license key.</returns>
public static string FindLicenseKey()
{
string licenseKeyFile = "..\\Common\\SyncfusionLicense.txt";
for (int n = 0; n < 20; n++)
{
if (!System.IO.File.Exists(licenseKeyFile))
{
licenseKeyFile = @"..\" + licenseKeyFile;
continue;
}
return File.ReadAllText(licenseKeyFile);
}
return string.Empty;
}
}
}