我正在使用 Aspose 单元进行非常简单的报告。问题是我有一些具有前导零的字段。在 CSV 中打开时,我看不到前导零。如果我看文字,我可以看到零
任何想法如何保持前导零
谢谢。
我正在使用 Aspose 单元进行非常简单的报告。问题是我有一些具有前导零的字段。在 CSV 中打开时,我看不到前导零。如果我看文字,我可以看到零
任何想法如何保持前导零
谢谢。
我不觉得这是完美的解决方案,但我能够得到我想要的结果。基本上用 string.Format("=\"{0}\"", content.account_no)); 格式化列 但我不得不通过行进行交互
int curretCol = System.Array.FindIndex<string>(clmAry, (string r) => r.ToString() == "account_no");
int currentrow = 1;
foreach (GLSearchDC content in GLList)
{
Cell cell = worksheet.Cells[CellsHelper.CellIndexToName(currentrow++, curretCol)];
cell.PutValue(string.Format("=\"{0}\"", content.Account_No));
content.account_no));
}