--
You received this message because you are subscribed to the Google Groups "Excel-DNA" group.
To unsubscribe from this group and stop receiving emails from it, send an email to exceldna+u...@googlegroups.com.
To post to this group, send email to exce...@googlegroups.com.
Visit this group at https://groups.google.com/group/exceldna.
For more options, visit https://groups.google.com/d/optout.
[ExcelFunction(Category = ExcelCategory)] public static object GetCurveData([ExcelArgument(Description = ExcelCurves)] string curveKey) { object obj = CurveDataCache.Instance.GetCurveData(curveKey); if (obj != null) { // return header and data // create result (with data as Item1 amd formatting as item 2) return ExcelHelper.SizeCallerToData(result.Item1, result.Item2); } else { // return header only // create result (with data as Item1 amd formatting as item 2) return ExcelHelper.SizeCallerToData(result.Item1, result.Item2); } }