private Run SplitRun(Run run, int position)
 {
            Run beforeRun = (Run)run.Clone(true);
            beforeRun.Text = run.Text.Substring(0, position);
            beforeRun.Font.Underline = Underline.Single;
            run.Text = run.Text.Substring(position);
            run.ParentNode.InsertBefore(beforeRun, run);

            return run;
  }

  

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-21
  • 2021-04-19
  • 2022-12-23
  • 2021-07-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2021-07-31
  • 2021-08-31
  • 2021-05-18
相关资源
相似解决方案