This repository was archived by the owner on Mar 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRowAndColumnActions.cs
77 lines (62 loc) · 2.93 KB
/
RowAndColumnActions.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
using System;
using DevExpress.Spreadsheet;
namespace SpreadsheetControl_API_Part03
{
public static class RowAndColumnActions
{
static void DeleteRowsBasedOnCondition(IWorkbook workbook)
{
#region #DeleteRowsBasedOnCondition
// Load a document from a file.
workbook.LoadDocument("Documents\\Document.xlsx");
// Access a worksheet.
Worksheet worksheet = workbook.Worksheets[0];
// Specify the condition to remove worksheet rows.
// If a value in column "A" is greater than 3
// and less than 14, remove the corresponding row.
Func<int, bool> rowRemovalCondition = x => worksheet.Cells[x, 0].Value.NumericValue > 3.0 && worksheet.Cells[x, 0].Value.NumericValue < 14.0;
// Fill cells with data.
for (int i = 0; i < 15; i++)
{
worksheet.Cells[i, 0].Value = i + 1;
worksheet.Cells[0, i].Value = i + 1;
}
// Delete all rows that meet the specified condition.
//worksheet.Rows.Remove(rowRemovalCondition);
// Delete rows that meet the specified condition.
// Check from the 8th row.
worksheet.Rows.Remove(7, rowRemovalCondition);
// Delete rows that meet the specified condition.
// Check rows 6 through 15.
//worksheet.Rows.Remove(5, 14, rowRemovalCondition);
#endregion #DeleteRowsBasedOnCondition
}
static void DeleteColumnssBasedOnCondition(IWorkbook workbook)
{
#region #DeleteColumnsBasedOnCondition
// Load a document from a file.
workbook.LoadDocument("Documents\\Document.xlsx");
// Access a worksheet.
Worksheet worksheet = workbook.Worksheets[0];
// Specify the condition to remove worksheet columns.
// If a value in the first row is greater than 3
// and less than 14, remove the corresponding column.
Func<int, bool> columnRemovalCondition = x => worksheet.Cells[0, x].Value.NumericValue > 3.0 && worksheet.Cells[0, x].Value.NumericValue < 14.0;
// Fill cells with data.
for (int i = 0; i < 15; i++)
{
worksheet.Cells[i, 0].Value = i + 1;
worksheet.Cells[0, i].Value = i + 1;
}
// Delete all columns that meet the specified condition.
//worksheet.Columns.Remove(columnRemovalCondition);
// Delete columns that meet the specified condition.
// Check from the 8th column.
worksheet.Columns.Remove(7, columnRemovalCondition);
// Delete columns that meet the specified condition.
// Check columns "F" through "O".
//worksheet.Columns.Remove(5, 14, columnRemovalCondition);
#endregion #DeleteColumnsBasedOnCondition
}
}
}