gpt4 book ai didi

excel - 以编程方式导入 Excel 的 XtraReports 格式单元格

转载 作者:行者123 更新时间:2023-12-04 20:13:42 26 4
gpt4 key购买 nike

使用 Designer 时,我可以将单元格的 XlsxFormatString 属性编辑为“#,##0.00”,结果符合预期。当我尝试以编程方式执行以下操作时,没有任何改变:

private XRTableCell CreateCell(int width, string text, bool haveColor, string color, bool isBold, DevExpress.XtraPrinting.BorderSide border, bool IsNumeric)
{
//MyWorkaround
if (IsNumeric)
{
if (text.Contains(","))
{
if (text.Length > text.IndexOf(',') + 3)
text = text.Remove(text.IndexOf(',') + 3);
}
}
//MyWorkaround end
XRTableCell cell = CreateCell(width, text, haveColor, color, isBold);
cell.Borders = border;
if (IsNumeric)
cell.XlsxFormatString = "#,##0.00";
return cell;
}

有什么建议可以使它正确吗?

最佳答案

经过对 Devexpress Documents 的一些研究和数十次尝试后,我通过了这个解决方案;

  • 如果输出不会用于某些计算:
    XtraReport myReport = new XtraReport();
    myReport.ExportOptions.Xls.TextExportMode = TextExportMode.Text;
    myReport.ExportOptions.Xlsx.TextExportMode = TextExportMode.Text;
  • 如果输出单元格类型由于某种原因很重要:
    float myTextValue;
    if (float.TryParse(textToPrint,out myValue))
    {
    string decSeperator = CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator;
    if (text.Contains(decSeperator))
    {
    if (textToPrint.Length > textToPrint.IndexOf(decSeperator[0]) + 3)
    textToPrint= textToPrint.Remove(textToPrint.IndexOf(decSeperator[0]) + 3);
    }
    }

  • 如果它可以在文本中找到分隔符,它将在 2 位数字后修剪。如果最后一位大于 5 等,它可以像圆形一样改变。

    XtraReports 导出工具已经确定文本是否为数字,它会自行设置单元格类型

    如果有人找到更好的解决方案,请随时交流。

    关于excel - 以编程方式导入 Excel 的 XtraReports 格式单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32717571/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com