Mapforce Excel自动调整栏

时间:2019-02-27 14:18:54

标签: c# excel-interop map-force

将多个文件从csv映射到excel并生成c#代码时,Mapforce是否可以实现格式化以输出xlsx文件? 这是mapforce xlsx writer的摘录:

    foreach (MFDocument doc in mapping)
    {
        var CDS9_report_predlo_ak_officeDoc = new XmlDocument();
        // create processing instruction etc...
        Output CDS9_report_predlo_ak_officeTarget = new FileOutput(doc.Filename);
        MFDomWriter.Write(doc.Select(MFQueryKind.All, null), CDS9_report_predlo_ak_officeDoc);
        // xlsx
        var xlsxWriter = new XLSXWriter(CDS9_report_predlo_ak_officeTarget, CDS9_report_predlo_ak_officeDoc);
        xlsxWriter.run();
        CDS9_report_predlo_ak_officeTarget.Close();
    }

我正在尝试的是在所有列和彩色标题行中具有内容的自动调整/自动调整大小。

如果有人有任何经验或类似项目可以给我一些有关此问题的线索。

谢谢。

0 个答案:

没有答案