如何确定msoPlaceholder是否为图片?

问题描述 投票:0回答:1

我有一个案例(PowerPoint COM API),其中Shape.Type == msoPlaceholder。形状是一幅画。我如何验证它是图片?

powerpoint office-interop
1个回答
1
投票

您可以使用ContainedType

例如对于msoChart

oplc.PlaceholderFormat.ContainedType = msoChart (will return True / False)

根据这里的文件https://docs.microsoft.com/en-us/office/vba/api/powerpoint.placeholderformat.containedtype

© www.soinside.com 2019 - 2024. All rights reserved.