控制 PowerPoint 2010 VSTO 中悬挂的缩进
我有一个段落,执行后:
paragraph.ParagraphFormat.FirstLineIndent = 18;
paragraph.ParagraphFormat.LeftIndent = 18;
当我检查段落对话框时,我得到:
- 文本前缩进 0.25" - 好吧,这就是我想要的
- 特殊第一行 0.25" - 这不是我想要的。
我想将特殊设置为悬挂,而不是第一行。可以用代码来控制吗?
I have a paragraph and after executing :
paragraph.ParagraphFormat.FirstLineIndent = 18;
paragraph.ParagraphFormat.LeftIndent = 18;
when I check Paragraph dialog box, I get:
- Indentation Before Text 0.25" - OK, this is what I wanted
- Special First line 0.25" - it's not what I want.
Instead of First line I want to have Special set to Hanging. Is it possible to control it with code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的:)
只需记住经验法则,
对于 FirstLine 使用正值,
对于 Hanging 使用负值
将代码更改为
Yes it is possible :)
Just remember the thumb rule
For FirstLine use a positive value and
For Hanging use a negative value
Change your code to