richTextBox插入表格 完整版

附件 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);  

            }
View Code

 

 

你可能感兴趣的:(text)