• <small id='ILzcw'></small><noframes id='ILzcw'>

      <bdo id='ILzcw'></bdo><ul id='ILzcw'></ul>

    <legend id='ILzcw'><style id='ILzcw'><dir id='ILzcw'><q id='ILzcw'></q></dir></style></legend>
    <i id='ILzcw'><tr id='ILzcw'><dt id='ILzcw'><q id='ILzcw'><span id='ILzcw'><b id='ILzcw'><form id='ILzcw'><ins id='ILzcw'></ins><ul id='ILzcw'></ul><sub id='ILzcw'></sub></form><legend id='ILzcw'></legend><bdo id='ILzcw'><pre id='ILzcw'><center id='ILzcw'></center></pre></bdo></b><th id='ILzcw'></th></span></q></dt></tr></i><div id='ILzcw'><tfoot id='ILzcw'></tfoot><dl id='ILzcw'><fieldset id='ILzcw'></fieldset></dl></div>
      1. <tfoot id='ILzcw'></tfoot>

        使用c#将格式从一行复制到另一行

        时间:2023-05-21
          <i id='GluQy'><tr id='GluQy'><dt id='GluQy'><q id='GluQy'><span id='GluQy'><b id='GluQy'><form id='GluQy'><ins id='GluQy'></ins><ul id='GluQy'></ul><sub id='GluQy'></sub></form><legend id='GluQy'></legend><bdo id='GluQy'><pre id='GluQy'><center id='GluQy'></center></pre></bdo></b><th id='GluQy'></th></span></q></dt></tr></i><div id='GluQy'><tfoot id='GluQy'></tfoot><dl id='GluQy'><fieldset id='GluQy'></fieldset></dl></div>

              <tbody id='GluQy'></tbody>
              <bdo id='GluQy'></bdo><ul id='GluQy'></ul>
              <tfoot id='GluQy'></tfoot>
                • <small id='GluQy'></small><noframes id='GluQy'>

                • <legend id='GluQy'><style id='GluQy'><dir id='GluQy'><q id='GluQy'></q></dir></style></legend>
                  本文介绍了使用c#将格式从一行复制到另一行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  这个问题与提出的问题非常相似 这里.但是给出的答案建议将格式与数据一起复制.我有一个使用 SSIS 生成的 excel 表 (.xlsx).现在我已经在第一行设置了格式,我想将其复制到工作表中已经填写的所有行.我怎样才能使用 C# 做到这一点?我正在使用 Excel 互操作.

                  This question is quite similar to the one asked here. But the answer given suggests copying the format along with the data. I have a excel sheet (.xlsx) that I generate using SSIS. Now I have set the formatting in first row, which I want to copy to all the rows that are already filled in the worksheet. How can I do that using C#? I am using Excel interop.

                  推荐答案

                  你可以使用PasteSpecial 与 xlPasteFormats.

                  Excel.Range R1 = (Excel.Range)oSheet.Cells[11, 11];
                  R1.Copy(Type.Missing);
                  
                  Excel.Range R2 = (Excel.Range)oSheet.Cells[15, 15];
                  R2.PasteSpecial(Excel.XlPasteType.xlPasteFormats,
                      Excel.XlPasteSpecialOperation.xlPasteSpecialOperationNone, false, false);
                  

                  这篇关于使用c#将格式从一行复制到另一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何生成像“1st November"这样的日期格式?在c#中 下一篇:格式化 DataBinder.Eval 数据

                  相关文章

                • <legend id='m2NQ1'><style id='m2NQ1'><dir id='m2NQ1'><q id='m2NQ1'></q></dir></style></legend>
                  <tfoot id='m2NQ1'></tfoot>

                    <bdo id='m2NQ1'></bdo><ul id='m2NQ1'></ul>

                  1. <i id='m2NQ1'><tr id='m2NQ1'><dt id='m2NQ1'><q id='m2NQ1'><span id='m2NQ1'><b id='m2NQ1'><form id='m2NQ1'><ins id='m2NQ1'></ins><ul id='m2NQ1'></ul><sub id='m2NQ1'></sub></form><legend id='m2NQ1'></legend><bdo id='m2NQ1'><pre id='m2NQ1'><center id='m2NQ1'></center></pre></bdo></b><th id='m2NQ1'></th></span></q></dt></tr></i><div id='m2NQ1'><tfoot id='m2NQ1'></tfoot><dl id='m2NQ1'><fieldset id='m2NQ1'></fieldset></dl></div>
                    1. <small id='m2NQ1'></small><noframes id='m2NQ1'>