决定指定的字体是否可以嵌入演示文稿中。 只读。
语法
expression。 Embeddable
表达 一个代表 Font 对象的变量。
返回值
MsoTriState
备注
Embeddable 属性的值可以是其中一个 MsoTriState 常量。
常量 | 说明 |
---|---|
msoFalse | 指定的字体不能嵌入演示文稿中。 |
msoTrue | 指定的字体可以嵌入演示文稿中。 |
示例
本示例检查活动演示文稿中所用的每种字体以判定该字体是否可以嵌入演示文稿中。
For Each usedFont In Presentations(1).Fonts
If usedFont.Embeddable Then
MsgBox usedFont.Name & ": Embeddable"
Else
MsgBox usedFont.Name & ": Not embeddable"
End If
Next usedFont
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。