We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e925f7 commit 7b89a8dCopy full SHA for 7b89a8d
Source/ExcelDna.IntelliSense.Host/MyFunctions.cs
@@ -1,9 +1,10 @@
1
#if DEBUG
2
- using System;
3
- using System.ComponentModel;
4
- using ExcelDna.Integration;
+using System;
+using System.ComponentModel;
+using ExcelDna.Integration;
5
+using ExcelDna.Logging;
6
- namespace ExcelDna.CustomAddin
7
+namespace ExcelDna.CustomAddin
8
{
9
// These functions - are just here for testing...
10
public class MyFunctions
@@ -50,6 +51,11 @@ public static object ADescriptFunction(object inout)
50
51
return inout;
52
}
53
54
+ [ExcelCommand]
55
+ public static void dnaLogDisplayShow()
56
+ {
57
+ LogDisplay.Show();
58
+ }
59
60
61
#endif
0 commit comments