1

我对 value 有奇怪的行为 ParagraphFormat.Bullet.Visible。我有几个带有项目符号的段落(项目符号看起来像矩形)。因此,当我调用TextFrame2.TextRange.ParagraphFormat.Bullet.Visible = msoFalse;所有项目符号时,它们会被隐藏,但是当我尝试使某些项目符号可见TextFrame2.TextRange.ParagraphFormat.Bullet.Visible = msoTrue;时,它会变得可见,但视图错误,在我的情况下,项目符号看起来像数字1. 对我来说,它看起来像 PP2010 中的错误,如果我们设置高达Bullet.Visiblefalse 它会重置项目符号设置。

4

1 回答 1

1

我认为你想要的财产是:

TextFrame2.TextRange.ParagraphFormat.Bullet.Type = ppBulletUnnumbered;

否则,Powerpoint 似乎不直观地将项目符号默认为数字。

于 2015-06-18T14:24:53.473 回答