1、设置行距,使用ParagraphFormat- ParagraphFormat pf = new ParagraphFormat();
- pf.AbsoluteLineSpacing = textControl1.Selection.ParagraphFormat.AbsoluteLineSpacing * 2; //行距
- pf.LeftIndent = 100;//左缩进
- textControl1.Selection.ParagraphFormat = pf;
复制代码 2、水平线还不清楚怎么增加。
3、使用InputFormat设置- InputFormat inputFormat = textControl1.InputFormat;
- inputFormat.FontSize = inputFormat.FontSize + 10; //改变字号
- //inputFormat.Superscript = true;//上标
- inputFormat.Subscript = true;//下标
- inputFormat.LeftIndent = 140;//左缩进
复制代码 |