-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCustomFunctionActions.cs
119 lines (102 loc) · 4.18 KB
/
CustomFunctionActions.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
using System;
using System.Collections.Generic;
using System.Globalization;
#region #usings_CFunc
using DevExpress.Spreadsheet;
using DevExpress.Spreadsheet.Functions;
#endregion #usings_CFunc
namespace SpreadsheetControl_WPF_API_Part02
{
public static class CustomFunctionActions
{
#region Actions
public static Action<IWorkbook> SphereMassAction = SphereMassValue;
#endregion
static void SphereMassValue(IWorkbook workbook)
{
#region #customfunctionuse
// Create a custom function and add it to the global scope.
SphereMassFunction customFunction = new SphereMassFunction();
if (!workbook.CustomFunctions.Contains(customFunction.Name))
workbook.CustomFunctions.Add(customFunction);
#endregion #customfunctionuse
workbook.BeginUpdate();
try
{
Worksheet worksheet = workbook.Worksheets[0];
worksheet.Range["A1:H1"].ColumnWidthInCharacters = 12;
worksheet.Range["A1:H1"].Alignment.Horizontal = SpreadsheetHorizontalAlignment.Center;
worksheet.DefinedNames.Add("seawater", "1025");
worksheet.DefinedNames.Add("iron", "7870");
worksheet.DefinedNames.Add("gold", "19300");
worksheet["A1"].Value = "Radius, m";
worksheet["B1"].Value = "Material";
worksheet["C1"].Value = "Mass, kg";
worksheet["A2"].Value = 0.1;
worksheet["B2"].Value = "";
worksheet["C2"].FormulaInvariant = "=SPHEREMASS(A2)";
worksheet["C2"].NumberFormat = "#.##";
worksheet["A3"].Value = 0.1;
worksheet["B3"].Value = "Seawater";
worksheet["C3"].FormulaInvariant = "=SPHEREMASS(A3,seawater)";
worksheet["C3"].NumberFormat = "#.##";
worksheet["A4"].Value = 0.1;
worksheet["B4"].Value = "Iron";
worksheet["C4"].FormulaInvariant = "=SPHEREMASS(A4,iron)";
worksheet["C4"].NumberFormat = "#.##";
worksheet["A5"].Value = 0.1;
worksheet["B5"].Value = "Gold";
worksheet["C5"].FormulaInvariant = "=SPHEREMASS(A5,gold)";
worksheet["C5"].NumberFormat = "#.##";
}
finally
{
workbook.EndUpdate();
}
}
}
#region #customfunctiondef
// Inheritance from Object is required for correct automatic VB.NET conversion
public class SphereMassFunction : Object, ICustomFunction
{
const string functionName = "SPHEREMASS";
readonly ParameterInfo[] functionParameters;
public SphereMassFunction()
{
// Missing optional parameters do not result in error message.
this.functionParameters = new ParameterInfo[] { new ParameterInfo(ParameterType.Value, ParameterAttributes.Required),
new ParameterInfo(ParameterType.Value, ParameterAttributes.Optional)};
}
public string Name { get { return functionName; } }
ParameterInfo[] IFunction.Parameters { get { return functionParameters; } }
ParameterType IFunction.ReturnType { get { return ParameterType.Value; } }
// Reevaluate cells on every recalculation.
bool IFunction.Volatile { get { return true; } }
ParameterValue IFunction.Evaluate(IList<ParameterValue> parameters, EvaluationContext context)
{
double radius;
double density = 1000;
ParameterValue radiusParameter;
ParameterValue densityParameter;
if (parameters.Count == 2)
{
densityParameter = parameters[1];
if (densityParameter.IsError)
return densityParameter;
else
density = densityParameter.NumericValue;
}
radiusParameter = parameters[0];
if (radiusParameter.IsError)
return radiusParameter;
else
radius = radiusParameter.NumericValue;
return (4 * Math.PI) / 3 * Math.Pow(radius,3) * density;
}
string IFunction.GetName(CultureInfo culture)
{
return functionName;
}
}
#endregion #customfunctiondef
}