I created a some function inherited from the FunctionBase:
public class MyFunc : FunctionBase
And i want to return result into two cells:
return new ArrayExpression(new RadExpression[,] { { new StringExpression("123"), new StringExpression("321") } });
But when i use my function in spreadsheet, only one cell correctly filled. I expect that will be filled with a range of two cells "123" and "321".
How to correctly fill range of cells from MyFunc?
Thank you.