Infragistics Excel单元格格式到时间

时间:2016-12-16 13:12:55

标签: c# excel infragistics

我正在使用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();

0 个答案:

没有答案