C#中导出word如何动态生成标题
导出word表格和内容已经写好了,现在就像在表格上方生成一个标题,用表的名字做内容,用什么实现,有代码更好
------解决方案--------------------我想问一下,导入的内容和标题不是一个概念吗。。
------解决方案--------------------不是啊 要把内容换成标题格式的 就是word中的标题那种 你会嘛 急求啊
------解决方案--------------------速度来高手。。。上头开始催了 -,-
------解决方案--------------------没人会?楼主回了没?教教我?
------解决方案--------------------该回复于2012-08-07 09:48:03被版主删除
------解决方案--------------------pplicationClass WordApp = new ApplicationClass();
// open the document specified in the fileName variable
Document adoc = WordApp.Documents.Open(ref fileName, ref missing, ref missing, ref missing, ref missing,ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing,ref missing, ref missing, ref missing);
Range myRange = adoc.Range(ref missing, ref missing);
myRange.InsertAfter(“Test“);
object oStyleName = “Heading 1″;
myRange.set_Style(ref oStyleName);
上述代码是插入一个标题“Test”, 并把它的格式设置为“Heading 1”。
Vin Jin [MSFT]
MSDN Community Support