我正在使用Infragistics excel导出excel。我想将excel的列类型设置为“Time”。我将db格式化为字符串,但可以将其更改为任何dataType。
我尝试了这些,但它们以普通或自定义格式出现
// Formats as 'General' in Excel
String time = dataRow.ItemArray[columnIndex].ToString();
row.Cells[columnIndex].Value = time;
// Formats as 'Custom' in Excel
row.Cells[columnIndex].CellFormat.FormatString = "hh:mm:ss";
row.Cells[columnIndex].Value = dataRow.ItemArray[columnIndex].ToString();