Adding a worksheet to a spreadsheet using .Net triggers an error.
The error is triggered when setting the number of rows and cols of the
worksheet.
It seems that there is a bug in the API
The code is found at
https://developers.google.com/google-apps/spreadsheets/#adding_a_worksheet
Refer to the code below. Setting the cols and rows trigegrs the error.
WorksheetEntry worksheet = new WorksheetEntry();
worksheet.Title.Text = "New Worksheet";
worksheet.Cols = 10;
worksheet.Rows = 20;
Any ideas for a work around?
Thanks