Hi,
Below is detailed description of what I am looking for.
In C#.NET I am using Aspose.Cells
Using Aspose.Cells I created a excel document. Then I added a button as below:
Dim btn As Aspose.Cells.Button = worksheet.Shapes.AddButton(1, 1, 1, 1, 20, 30)
btn.Text = "Button"
I have a macro function called SortData() in the excel document created above.
I wanted to call this macro function when the above button is clicked. Can anyone say how to write code for this in C#.NET
Thanks in advance