附件 https://files.cnblogs.com/xe2011/richTextBox_InsertTable_Full.rar

richTextBox插入表格 完整版

 

调用

   richTextBoxTableDlg dlg = new richTextBoxTableDlg();
            dlg.richTextBox = richTextBox51;

            if (dlg.ShowDialog() ==DialogResult.OK)
            {
                richTextBoxTable r1 = new richTextBoxTable();
                r1.richTextBox = richTextBox51;
                r1.cellWidth = (int)dlg.numericUpDownCellWidth.Value  ;
                r1.InsertTable((int)dlg.numericUpDownColumn.Value, (int)dlg.numericUpDownRow.Value, dlg.radioButtonAutoSzie.Checked);  
            }
View Code

相关文章:

  • 2022-12-23
  • 2021-09-24
  • 2022-12-23
  • 2021-08-07
  • 2021-11-21
猜你喜欢
  • 2022-12-23
  • 2022-02-16
  • 2022-01-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案