richTextBox插入表格 完整版

时间:2023-02-12 19:56:37

附件 http://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);
}