TextRange.Text 属性 (PowerPoint)

返回或设置一个 字符串 ,表示包含指定对象中的文本。 读/写。

语法

表达式文本

表达 一个代表 TextRange 对象的变量。

返回值

字符串

示例

本示例设置当前演示文稿第一张幻灯片中标题的文本和字形。

Set myPres = Application.ActivePresentation

With myPres.Slides(1).Shapes.Title.TextFrame.TextRange

    .Text = "Welcome!"

    .Font.Italic = True

End With

另请参阅

TextRange 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。