我有值ParagraphFormat.Bullet.Visible
的奇怪行为。
我有几个子弹段(子弹看起来像矩形)。因此,当我为所有项目符号调用TextFrame2.TextRange.ParagraphFormat.Bullet.Visible = msoFalse;
时,它们会变得隐藏,但是当我尝试使某些子弹可见TextFrame2.TextRange.ParagraphFormat.Bullet.Visible = msoTrue;
时,它变得可见,视图错误,在我的情况下,项目符号看起来像{{1} 1}}
对我来说,它看起来像PP2010中的bug,如果我们将1.
设置为false,它会重置子弹设置。
答案 0 :(得分:1)
我认为你想要的财产是:
TextFrame2.TextRange.ParagraphFormat.Bullet.Type = ppBulletUnnumbered;
否则,Powerpoint unintuitive似乎将项目符号默认为数字。