• <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#将格式从一行复制到另一行

        Copy format from one row to another using c#(使用c#将格式从一行复制到另一行)
          <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#将格式从一行复制到另一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Force JsonConvert.SerializeXmlNode to serialize node value as an Integer or a Boolean(强制 JsonConvert.SerializeXmlNode 将节点值序列化为整数或布尔值)
                  Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
                  Could not determine JSON object type for type quot;Classquot;(无法确定类型“Class的 JSON 对象类型.)
                  How to deserialize a JSONP response (preferably with JsonTextReader and not a string)?(如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?)
                  how to de-serialize JSON data in which Timestamp it-self contains fields?(如何反序列化时间戳本身包含字段的JSON数据?)
                  JSON.Net custom contract serialization and Collections(JSON.Net 自定义合约序列化和集合)
                • <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>
                              <tbody id='m2NQ1'></tbody>
                          • <small id='m2NQ1'></small><noframes id='m2NQ1'>