目录

Top 属性

优质
小牛编辑
128浏览
2023-12-01

全部显示

本主题中的某些内容可能不适用于某些语言。

Top 属性应用于 AssistantCommandBar 对象的情形。

以点数为单位设置或返回从“Office 助手”的顶部或从指定命令栏顶边到屏幕顶边的距离。对于固定命令栏,该属性返回或设置从命令栏到固定区域顶部的距离。Long 类型,可读写。

expression.Top

expression 必需。该表达式返回上面对象之一。

Top 属性应用于 CommandBarButtonCommandBarComboBoxCommandBarControlCommandBarPopup 对象的情形。

以像素为单位返回指定命令栏控件顶边到屏幕顶边的距离。Long 类型,只读。

expression.Top

expression 必需。该表达式返回上面对象之一。

示例

应用于 AssistantCommandBar 对象的情形。

本示例将“Office 助手”移动到其他坐标并设置接下来显示的Top 属性。

With Assistant
 .On = True
 .Visible = True
 .Sounds = True
 .Animation = msoAnimationBeginSpeaking
End With
Assistant.Top = 100
MsgBox "Click OK to move the Assistant to a " & _
 "new location."
Assistant.Top = 500

本示例将名为 Custom 的浮动命令栏的左上角定位为距离屏幕左边 140 像素、距离屏幕上边 100 像素。

Set myBar = CommandBars("Custom")
myBar.Position = msoBarFloating
With myBar
 .Left = 140
 .Top = 100
End With