-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathImportActions.cs
158 lines (139 loc) · 6.84 KB
/
ImportActions.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
using System;
using System.IO;
using System.Data;
using System.Drawing;
using System.Diagnostics;
using System.Collections.Generic;
using DevExpress.Spreadsheet;
namespace SpreadsheetExamples {
public static class ImportActions {
#region Actions
public static Action<Workbook> ImportArraysAction = ImportArrays;
public static Action<Workbook> ImportListAction = ImportList;
public static Action<Workbook> ImportDataTableAction = ImportDataTable;
public static Action<Workbook> ImportArrayWithFormulasAction = ImportArrayWithFormulas;
public static Action<Workbook> ImportCustomObjectSpecifiedFieldsAction = ImportCustomObjectSpecifiedFields;
public static Action<Workbook> ImportCustomObjectUsingCustomConverterAction = ImportCustomObjectUsingCustomConverter;
#endregion
static void ImportArrays(Workbook workbook) {
workbook.Worksheets[0].Cells["A1"].ColumnWidthInCharacters = 35;
workbook.Worksheets[0].Cells["A1"].Value = "Import an array horizontally:";
workbook.Worksheets[0].Cells["A3"].Value = "Import a two-dimensional array:";
#region #ImportArray
Worksheet worksheet = workbook.Worksheets[0];
// Create an array of strings.
string[] array = new string[] { "AAA", "BBB", "CCC", "DDD" };
// Insert array values into the worksheet horizontally.
// Data import starts with the "B1" cell.
worksheet.Import(array, 0, 1, false);
#endregion #ImportArray
#region #ImportTwoDimensionalArray
// Create a two-dimensional array of strings.
String[,] names = new String[2, 4]{
{"Ann", "Edward", "Angela", "Alex"},
{"Rachel", "Bruce", "Barbara", "George"}
};
// Insert array values into the worksheet.
// Data import starts with the "B3" cell.
worksheet.Import(names, 2, 1);
#endregion #ImportTwoDimensionalArray
}
static void ImportList(Workbook workbook) {
#region #ImportList
Worksheet worksheet = workbook.Worksheets[0];
// Create a list that contains string values.
List<string> cities = new List<string>();
cities.Add("New York");
cities.Add("Rome");
cities.Add("Beijing");
cities.Add("Delhi");
// Insert list values into the worksheet vertically.
// Data import starts with the "A1" cell.
worksheet.Import(cities, 0, 0, true);
#endregion #ImportList
}
static void ImportDataTable(Workbook workbook)
{
#region #ImportDataTable
Worksheet worksheet = workbook.Worksheets[0];
// Create an "Employees" DataTable object with four columns.
DataTable table = new DataTable("Employees");
table.Columns.Add("FirstN", typeof(string));
table.Columns.Add("LastN", typeof(string));
table.Columns.Add("JobTitle", typeof(string));
table.Columns.Add("Age", typeof(Int32));
table.Rows.Add("Nancy", "Davolio", "recruiter", 32);
table.Rows.Add("Andrew", "Fuller", "engineer", 28);
// Insert data table values into the worksheet.
// Data import starts with the "A1" cell.
worksheet.Import(table, true, 0, 0);
// Color the table header.
for (int i = 1; i < 5; i++) {
worksheet.Cells[10, i].FillColor = Color.LightGray;
}
#endregion #ImportDataTable
}
static void ImportArrayWithFormulas(Workbook workbook)
{
#region #ImportArrayWithFormulas
Worksheet worksheet = workbook.Worksheets[0];
string[] array = new string[] { "000", "=3,141", "=B1+1,01" };
// Import data as formulas in German locale (decimal and list separators).
worksheet.Import(array, 0, 0, false, new DataImportOptions() { ImportFormulas = true,
FormulaCulture = new System.Globalization.CultureInfo("de-DE") });
string[] arrayR1C1 = new string[] { "=3.141", "=R[-1]C+1.01" };
// Import data as formulas that use the R1C1 reference style.
worksheet.Import(arrayR1C1, 1, 0, true, new DataImportOptions() { ImportFormulas = true, ReferenceStyle= ReferenceStyle.R1C1});
#endregion #ImportArrayWithFormulas
}
#region #ImportCustomObjectSpecifiedFields
class MyDataObject
{
public MyDataObject(int intValue, string value, bool boolValue)
{
this.myInteger = intValue;
this.myString = value;
this.myBoolean = boolValue;
}
public int myInteger { get; set; }
public string myString { get; set; }
public bool myBoolean { get; set; }
}
static void ImportCustomObjectSpecifiedFields(Workbook workbook)
{
Worksheet worksheet = workbook.Worksheets[0];
List<MyDataObject> list = new List<MyDataObject>();
list.Add(new MyDataObject(1, "1", true));
list.Add(new MyDataObject(2, "2", false));
// Import values from specific data source fields.
worksheet.Import(list, 0, 0, new DataSourceImportOptions() { PropertyNames = new string[] { "myBoolean", "myInteger" } });
}
#endregion #ImportCustomObjectSpecifiedFields
#region #ImportCustomObjectUsingCustomConverter
// A custom converter that converts the first column's integer values to text.
class MyDataValueConverter : IDataValueConverter
{
public bool TryConvert(object value, int columnIndex, out CellValue result)
{
if (columnIndex == 0)
{
result = DevExpress.Docs.Text.NumberInWords.Ordinal.ConvertToText((int)value);
return true;
}
else
result = CellValue.FromObject(value);
return true;
}
}
static void ImportCustomObjectUsingCustomConverter(Workbook workbook)
{
Worksheet worksheet = workbook.Worksheets[0];
List<MyDataObject> list = new List<MyDataObject>();
list.Add(new MyDataObject(1, "one", true));
list.Add(new MyDataObject(2, "two", false));
// Import values from specific data source fields and converts integer values to text.
worksheet.Import(list, 0, 0, new DataSourceImportOptions() { Converter = new MyDataValueConverter() });
}
#endregion #ImportCustomObjectUsingCustomConverter
}
}