text 如何计算幻灯片上的形状?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 如何计算幻灯片上的形状?相关的知识,希望对你有一定的参考价值。

Sub Count_shapes_on_slide()

Dim p As Presentation
Set p = ActivePresentation

Dim No As Integer
Dim i As Integer
Dim PPS As Slide
Dim Sh As Shape
'***************************
i = InputBox("Enter Slide number")

'shows number of shapes on slide
No = p.Slides(i).Shapes.Count
MsgBox (No) & " shapes found"

For Each Sh In p.Slides(i).Shapes
    If Sh.Type <> msoPicture Then MsgBox (Sh.Type)
Next Sh

End Sub

以上是关于text 如何计算幻灯片上的形状?的主要内容,如果未能解决你的问题,请参考以下文章

ppt中如何改变插入图片的背景颜色?

jQuery Text Resizing Plugin 仅适用于 Bootstrap Carousel 的第一张幻灯片

Powerpoint VBA 选择幻灯片特定区域内的所有形状

text 如何显示多张幻灯片的幻灯片ID?

text 如何显示单张幻灯片的幻灯片ID?

text 如何根据幻灯片的布局或内容删除幻灯片?