Excel) (Speech.Direction 属性

返回或设置朗读单元格的次序。 Direction 属性的值是 XlSpeakDirection 常量。 读/写。

语法

表达式方向

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

示例

在本示例中,Microsoft Excel 确定朗读的方向,并通知用户。

Sub CheckSpeechDirection() 
 
 ' Notify user of speech direction. 
 If Application.Speech.Direction = xlSpeakByColumns Then 
 MsgBox "The speech direction is set to speak by columns." 
 Else 
 MsgBox "The speech direction is set to speak by rows." 
 End If 
 
End Sub

支持和反馈

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