-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathWorksheetActions.cs
179 lines (144 loc) · 7.34 KB
/
WorksheetActions.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
using System;
using System.Drawing;
using DevExpress.Spreadsheet;
namespace SpreadsheetExamples {
public static class WorksheetActions {
#region Actions
public static Action<Workbook> AssignActiveWorksheetAction = AssignActiveWorksheet;
public static Action<Workbook> AddWorksheetAction = AddWorksheet;
public static Action<Workbook> RemoveWorksheetAction = RemoveWorksheet;
public static Action<Workbook> RenameWorksheetAction = RenameWorksheet;
public static Action<Workbook> CopyWorksheetWithinWorkbookAction = CopyWorksheetWithinWorkbook;
public static Action<Workbook> CopyWorksheetBetweenWorkbooksAction = CopyWorksheetBetweenWorkbooks;
public static Action<Workbook> MoveWorksheetAction = MoveWorksheet;
public static Action<Workbook> ShowHideWorksheetAction = ShowHideWorksheet;
public static Action<Workbook> ShowHideGridlinesAction = ShowHideGridlines;
public static Action<Workbook> ShowHideHeadingsAction = ShowHideHeadings;
public static Action<Workbook> PageSetupAction = PageSetup;
public static Action<Workbook> ZoomWorksheetAction = ZoomWorksheet;
#endregion
static void AssignActiveWorksheet(Workbook workbook) {
#region #ActiveWorksheet
// Set the second worksheet under the "Sheet2" name as active.
workbook.Worksheets.ActiveWorksheet = workbook.Worksheets["Sheet2"];
#endregion #ActiveWorksheet
}
static void AddWorksheet(Workbook workbook) {
#region #AddWorksheet
// Add a new worksheet to the workbook. The worksheet is appended to the end of the worksheet collection
// under the name "SheetN", where N is a number that is greater by 1
// than the maximum number used in worksheet names of the same type.
workbook.Worksheets.Add();
// Add a new worksheet under the specified name.
workbook.Worksheets.Add().Name = "TestSheet1";
workbook.Worksheets.Add("TestSheet2");
// Add a new worksheet to the specified position in the worksheet collection.
workbook.Worksheets.Insert(1, "TestSheet3");
workbook.Worksheets.Insert(3);
#endregion #AddWorksheet
}
static void RemoveWorksheet(Workbook workbook) {
#region #DeleteWorksheet
// Delete the "Sheet2" worksheet.
workbook.Worksheets.Remove(workbook.Worksheets["Sheet2"]);
// Delete the first worksheet.
workbook.Worksheets.RemoveAt(0);
#endregion #DeleteWorksheet
}
static void RenameWorksheet(Workbook workbook) {
#region #RenameWorksheet
// Rename the second worksheet.
workbook.Worksheets[1].Name = "Renamed Sheet";
#endregion #RenameWorksheet
}
static void CopyWorksheetWithinWorkbook(Workbook workbook) {
workbook.Worksheets["Sheet1"].Cells.FillColor = Color.LightSteelBlue;
workbook.Worksheets["Sheet1"].Cells["A1"].ColumnWidthInCharacters = 50;
workbook.Worksheets["Sheet1"].Cells["A1"].Value = "Sheet1's Content";
#region #CopyWorksheet
// Add a new worksheet to a workbook.
workbook.Worksheets.Add("Sheet1_Copy");
// Copy all information (content and formatting) to the newly created worksheet
// from the "Sheet1" worksheet.
workbook.Worksheets["Sheet1_Copy"].CopyFrom(workbook.Worksheets["Sheet1"]);
#endregion #CopyWorksheet
}
static void CopyWorksheetBetweenWorkbooks(Workbook workbook)
{
#region #CopyWorksheetsBetweenWorkbooks
// Create a source workbook.
Workbook sourceWorkbook = new Workbook();
// Add a new worksheet.
sourceWorkbook.Worksheets.Add();
// Modify the second worksheet of the source workbook.
sourceWorkbook.Worksheets[1].Cells["A1"].Value = "A worksheet to be copied";
sourceWorkbook.Worksheets[1].Cells["A1"].Font.Color = Color.ForestGreen;
// Copy the second worksheet of the source workbook into the first worksheet of another workbook.
workbook.Worksheets[0].CopyFrom(sourceWorkbook.Worksheets[1]);
#endregion #CopyWorksheetsBetweenWorkbooks
}
static void MoveWorksheet(Workbook workbook) {
#region #MoveWorksheet
// Move the first worksheet to the position of the last worksheet within the workbook.
workbook.Worksheets[0].Move(workbook.Worksheets.Count - 1);
#endregion #MoveWorksheet
}
static void ShowHideWorksheet(Workbook workbook) {
#region #ShowHideWorksheet
// Hide the "Sheet2" worksheet and disable access to this worksheet in the user interface.
// Use the Worksheet.Visible property to unhide this worksheet.
workbook.Worksheets["Sheet2"].VisibilityType = WorksheetVisibilityType.VeryHidden;
// Hide the "Sheet3" worksheet.
// You can unhide this worksheet from the user interface.
workbook.Worksheets["Sheet3"].Visible = false;
#endregion #ShowHideWorksheet
}
static void ShowHideGridlines(Workbook workbook) {
#region #ShowHideGridlines
// Hide gridlines on the first worksheet.
workbook.Worksheets[0].ActiveView.ShowGridlines = false;
#endregion #ShowHideGridlines
}
static void ShowHideHeadings(Workbook workbook) {
#region #ShowHideHeadings
// Hide row and column headings in the first worksheet.
workbook.Worksheets[0].ActiveView.ShowHeadings = false;
#endregion #ShowHideHeadings
}
static void PageSetup(Workbook workbook)
{
#region #ViewType
// Select the worksheet view type.
workbook.Worksheets[0].ActiveView.ViewType = WorksheetViewType.PageLayout;
#endregion #ViewType
#region #PageOrientation
// Set the page orientation to Landscape.
workbook.Worksheets[0].ActiveView.Orientation = PageOrientation.Landscape;
#endregion #PageOrientation
#region #PageMargins
// Specifies inches as the workbook's measurement units.
workbook.Unit = DevExpress.Office.DocumentUnit.Inch;
// Access page margins.
Margins pageMargins = workbook.Worksheets[0].ActiveView.Margins;
// Specify page margins.
pageMargins.Left = 1;
pageMargins.Top = 1.5F;
pageMargins.Right = 1;
pageMargins.Bottom = 0.8F;
// Specify header and footer margins.
pageMargins.Header = 1;
pageMargins.Footer = 0.4F;
#endregion #PageMargins
#region #PaperSize
// Select the page's paper size.
workbook.Worksheets[0].ActiveView.PaperKind = DevExpress.Drawing.Printing.DXPaperKind.A4;
#endregion #PaperSize
}
static void ZoomWorksheet(Workbook workbook) {
#region #WorksheetZoom
// Zoom in the worksheet view.
workbook.Worksheets[0].ActiveView.Zoom = 150;
#endregion #WorksheetZoom
}
}
}