I am trying set my formatted datatable to an excel worksheet.
Simply :
ws.InsertDataTable(myDatatable,
new InsertDataTableOptions()
{
ColumnHeaders = false,
StartRow = 5
});
But myDatatable cells contains numeric values mostly. And when I insert my datatable into excel via Gembox Spreadsheet, many of the cells got "Number Stored as Text" warning.
I don't want to disable this warning, but I want to apply a "Convert To Number" as we do in excel.