word中的编号
我正在写一个单词插件。
该插件应该更改Word中的编号列表。
原始列表:
- foo 1.1 foobara 1.2 foobar b 1.3 foobar c
- bar
- bar X
- bar Y
该插件删除 1.1 和 3。
生成的列表如下所示:
- foo 1.1 foobar b 1.2 foobar c
- bar
- bar Y
预期结果应该是:
- foo 1.2 foobar b 1.3 foobar c
- bar
- bar Y
如何实现?
提前致谢 托比
I am writing an addin for word.
the addin should change a numbered list in word.
original list:
- foo
1.1 foobar a
1.2 foobar b
1.3 foobar c - bar
- bar X
- bar Y
The addin deletes 1.1 and 3.
The resulting list looks like:
- foo
1.1 foobar b
1.2 foobar c - bar
- bar Y
The expected result should be:
- foo
1.2 foobar b
1.3 foobar c - bar
- bar Y
How to achieve this?
Thanks in advance
tobi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在删除条目后编辑编号列表模板并设置编号值。
比如说,在您删除例如中的 1.1 后,1.2 将变为 1.1,您必须将编号值设置回 1.2
这是如何设置和编辑编号列表模板的链接
http://www.codeproject.com/Articles/34801/Word-Style-Automation
检查 5. 将样式设置为段落部分
You should edit your list templates of Numbering and set the number value after deleting the entry.
Say after you delete 1.1 in your eg, 1.2 will become 1.1 here you have to set the numbering value back to 1.2
Here is the link for How to set and edit the list templates for Numbering
http://www.codeproject.com/Articles/34801/Word-Style-Automation
Check the section 5. Set Style to Paragraph