控制 PowerPoint 2010 VSTO 中悬挂的缩进

发布于 2025-01-06 17:25:51 字数 325 浏览 0 评论 0原文

我有一个段落,执行后:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

马蹄踏│碎落叶 2025-01-13 17:25:51

<块引用>
<块引用>

我希望将“特殊”设置为“悬挂”,而不是“第一行”。可以用代码控制吗?


是的,这是可能的:)

只需记住经验法则,

对于 FirstLine 使用正值,

对于 Hanging 使用负值

将代码更改为

paragraph.ParagraphFormat.FirstLineIndent = -18;

Instead of First line I want to have Special set to Hanging. Is it possible to control it with code?

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

paragraph.ParagraphFormat.FirstLineIndent = -18;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文