我有这个代码用于在Microsoft Word文档上打开和写入文本。
private void button1_Click(object sender, EventArgs e)
{
Microsoft.Office.Interop.Word._Application oWord;
object oMissing = Type.Missing;
oWord = new Microsoft.Office.Interop.Word.Application();
oWord.Visible = true;
oWord.Documents.Open("f:\\test.docx");
oWord.Selection.TypeText("Write your text here");
}
我的问题是,如何在doc文件中使用特殊格式(位置,间距,对齐等)编写文本?
答案 0 :(得分:0)
我建议阅读这篇文章。您可以找到基本的文本格式以及许多其他可能派上用场的内容:
http://www.c-sharpcorner.com/UploadFile/amrish_deep/WordAutomation05102007223934PM/WordAutomation.aspx
4.3.3描述文本选择和11.2文本格式