Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 Word 模板并不十分熟悉,但我想知道是否有一种方法可以从 Word 模板中命名您的部分...
例如:
在这些部分中的每个部分中都会有文本。
在 Win Form 应用程序中,我想在控件中显示这些部分名称,用户可以在其中选择一个或多个这些部分,然后自动创建一个新的 Word 文档。
这可能吗?如果是这样,我要研究什么?
您可以获得 Word 模板中的部分列表, 但这些部分没有名称。 您只能使用索引从他们的集合中提取它们。
假设您有一个名为 wDoc 的活动文档,您可以以这种方式循环每个部分
using Microsoft.Office.Interop.Word; ... foreach (Section section in wDoc.Sections) { .... }
看MSDN上的Section Interface