我还是不清楚你要做什么。
我猜啊,你是不知道怎么对文档中一段文字设置ListFormat。
基本思路就是
1. 设置ListFormat属性,比如 数字列表,起始数据是 5.
2. 设置Selection,也就是将你需要设置ListFormat的部分选中。
3. 给Selection设置ListFormat。
- TXTextControl.ListFormat lf = new TXTextControl.ListFormat();
- lf.Type = TXTextControl.ListType.Numbered;
- lf.FirstNumber = 5;
- textControl1.Selection.ListFormat = lf;
复制代码 |