C#操作excel表格怎么给一个单元格内的一段文字加下划线 以下是操作w...
发布网友
发布时间:2024-10-03 10:20
我来回答
共1个回答
热心网友
时间:2024-10-06 10:49
//插入下划线
public void InsertUnderLine(string pText, int pFontSize, Microsoft.Office.Interop.Word.WdColor pFontColor, int pFontBold, Microsoft.Office.Interop.Word.WdParagraphAlignment ptextAlignment)
{
this._wordApplication.Application.Selection.TypeText(pText); //pText就是你要设置下划线的内容
this._wordApplication.Application.Selection.Font.Underline = Microsoft.Office.Interop.Word.WdUnderline.wdUnderlineSingle; //设置下划线
}