可以用如下代码实现,跳出到表格后的位置,您也可以自己选择更改到其他位置
- Table tb = _textControl.Tables.GetItem(0);
- int end = tb.Cells.GetItem(tb.Rows.Count, tb.Columns.Count).Start + tb.Cells.GetItem(tb.Rows.Count, tb.Columns.Count).Length;
- _textControl.InputPosition = new InputPosition(end + 1);
复制代码 |