| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
The Excel-DNA IntelliSense extension provides in-sheet IntelliSense for user-defined functions created in Excel-DNA add-ins, VBA Workbooks and .xla add-ins, and other native code .xll add-ins.
This page provides simple instructions for getting started and testing the IntelliSense feature for Excel-DNA add-ins and VBA-based functions. Detailed usage instructions including advanced features can be found on the more detailed Usage Instructions page.
Your C# functions might look like this one:
[ExcelFunction("Returns the answer")]
public static object MyFunction( [ExcelArgument("The unimportant input")] object input )
{
return 42;
}Suppose you have VBA code like this:
Function MyVbaFunction(FirstArg, SndArg)
MyVbaFunction = FirstArg + SndArg
End Function
Function MyOtherFunc()
MyOtherFunc = 7
End Function| A | B | C | D | E | F | G | H | |
|---|---|---|---|---|---|---|---|---|
| 1 | FunctionInfo | 1.0 | ||||||
| 2 | MyVbaFunction | Returns the best answers | http://www.google.com | FirstArg | The first Argument | SndArg | The Second Argument | |
| 3 | MyOtherFunc | Also returns a value |
| Back | FazBrowse Home | New Git URL |