-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIListExt.cs
180 lines (133 loc) · 5.35 KB
/
IListExt.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Reflection;
using Excel = Microsoft.Office.Interop.Excel;
namespace SadrTools.Extensions;
public static class IListExt
{
public static TList Push<TList, TItem>(this TList list, TItem item) where TList : IList<TItem>
{
if (list.IsReadOnly)
throw new Exception(CommonConsts.Messages.Exception.ReadOnlyList);
list.Add(item);
return list;
}
public static void ToExcel<T>(this List<T> list, string path)
{
#region [ تعریفات ]
if (path.IsNullOrEmpty())
throw new Exception(CommonConsts.Messages.Exception.InvalidObject);
if (list == null)
throw new Exception(CommonConsts.Messages.Exception.InvalidObject);
Excel.Application excelApp = null;
Excel.Workbooks workBooks = null;
Excel._Workbook workBook = null;
Excel.Sheets sheets = null;
Excel._Worksheet workSheet = null;
Excel.Range range = null;
Excel.Font font = null;
object optionalValue = Missing.Value;
string strHeaderStart = "A2";
string strDataStart = "A3";
#endregion
#region [ پردازش ]
try
{
#region [ ایجاد ]
excelApp = new Excel.Application();
workBooks = (Excel.Workbooks)excelApp.Workbooks;
workBook = (Excel._Workbook)(workBooks.Add(optionalValue));
sheets = (Excel.Sheets)workBook.Worksheets;
workSheet = (Excel._Worksheet)(sheets.get_Item(1));
#endregion
#region [ هدر ]
Dictionary<string, string> objHeaders = new Dictionary<string, string>();
PropertyInfo[] headerInfo = typeof(T).GetProperties();
foreach (var property in headerInfo)
{
var attribute = property.GetCustomAttributes(typeof(DisplayNameAttribute), false)
.Cast<DisplayNameAttribute>().FirstOrDefault();
objHeaders.Add(property.Name, attribute == null ? property.Name : attribute.DisplayName);
}
range = workSheet.get_Range(strHeaderStart, optionalValue);
range = range.get_Resize(1, objHeaders.Count);
range.set_Value(optionalValue, objHeaders.Values.ToArray());
range.BorderAround(Type.Missing, Excel.XlBorderWeight.xlThin, Excel.XlColorIndex.xlColorIndexAutomatic, Type.Missing);
font = range.Font;
font.Bold = true;
range.Interior.Color = Color.LightGray.ToArgb();
#endregion
#region [ نوشتن دیتا در سلول ها ]
int count = list.Count;
object[,] objData = new object[count, objHeaders.Count];
for (int j = 0; j < count; j++)
{
var item = list[j];
int i = 0;
foreach (KeyValuePair<string, string> entry in objHeaders)
{
var y = typeof(T).InvokeMember(entry.Key.ToString(), BindingFlags.GetProperty, null, item, null);
objData[j, i++] = (y == null) ? "" : y.ToString();
}
}
range = workSheet.get_Range(strDataStart, optionalValue);
range = range.get_Resize(count, objHeaders.Count);
range.set_Value(optionalValue, objData);
range.BorderAround(Type.Missing, Excel.XlBorderWeight.xlThin, Excel.XlColorIndex.xlColorIndexAutomatic, Type.Missing);
range = workSheet.get_Range(strHeaderStart, optionalValue);
range = range.get_Resize(count + 1, objHeaders.Count);
range.Columns.AutoFit();
#endregion
#region [ ذخیره فایل ]
if (!path.IsNullOrEmpty())
workBook.SaveAs(path);
excelApp.Visible = true;
#endregion
#region Release objects
try
{
if (workSheet != null)
System.Runtime.InteropServices.Marshal.ReleaseComObject(workSheet);
workSheet = null;
if (sheets != null)
System.Runtime.InteropServices.Marshal.ReleaseComObject(sheets);
sheets = null;
if (workBook != null)
System.Runtime.InteropServices.Marshal.ReleaseComObject(workBook);
workBook = null;
if (workBooks != null)
System.Runtime.InteropServices.Marshal.ReleaseComObject(workBooks);
workBooks = null;
if (excelApp != null)
System.Runtime.InteropServices.Marshal.ReleaseComObject(excelApp);
excelApp = null;
}
catch (Exception ex)
{
workSheet = null;
sheets = null;
workBook = null;
workBooks = null;
excelApp = null;
ex.LogToTextFile("ToExcel");
}
finally
{
GC.Collect();
}
#endregion
}
catch (Exception ex)
{
ex.LogToTextFile("ToExcel");
}
finally
{
GC.Collect();
}
#endregion
}
}