Registration icon indicating copy to clipboard operation
Registration copied to clipboard

Registration helpers for Excel-DNA

Results 12 Registration issues
Sort by recently updated
recently updated
newest added

From this discussion: https://groups.google.com/g/exceldna/c/JtWnyEyJeM0 • Support for ValueTask return on ExcelFunction. (Need to convert ValueTask to Task using the "AsTask()" method) • Include DateOnly (native struct on .net 6.0) in...

enhancement

Hi I raised a issue for a conflict between ExcelFunction and ExcelFunctionDoc attribute as both of them include the same property `ExplicitRegistration ` https://github.com/Excel-DNA/ExcelDnaDoc/issues/36 My goal is to use the...

Hi, I am trying to do a POC creating a function that allows an asynchronous call with unlimited number of arguments. When adding async Task as the return type the...

how to use this function? Give an example? •Optional parameters (with default values), 'params' parameters and Nullable parameters Give an example? Thanks!

Could you please advise on the right way to specify a value to be displayed when task is in Running state? Given the example below, I'm trying to show something...

This expression formatter looks useful: http://geekswithblogs.net/mrsteve/archive/2016/02/29/friendly-readable-expression-trees-debug-visualizer.aspx

### Repro steps: in Source\Samples\Registration.Sample\ParameterConversionExamples.cs, add this function in the `ParameterConversionExamples` class ``` [ExcelFunction] public static string dnaNullableOptionalDateTime(DateTime? val = null) => val.HasValue ? "VAL: " + val : "NULL";...

The order of the ExcelRegistion statement needs to be different for registering RTD or Native async functions. case #1 ====== Here is my example that works for registering RTD async...

Object handles wrappers provide constructor and access functions for object instances (in contrast with the static methods currently supported by Excel-DNA). It would be convenient to generate these wrappers. One...

From this forum post: https://groups.google.com/d/topic/exceldna/l-grehDBLng/discussion. Currently we only support params arrays of primitive types - the expansion does not integrate with other type conversions. In preference to the suggested implementation...