Application.UsableHeight 属性 (Project)
获取可用的最大高度,以磅为单位的项目窗口。 只读 Double。
语法
表达式。UsableHeight
expression:表示 Application 对象的变量。
备注
UsableHeight 属性值等于主窗口中的功能区、 状态栏、 滚动条和标题栏所占用的空间的垂直空间的总量。
示例
以下示例会移动主窗口内每个打开的项目的窗口。
Sub FitWindows()
Dim W As Window ' The Window object used in For Each loop
For Each W In Application.Windows
' Adjust the height of each window, if necessary.
If W.Height > UsableHeight Then
W.Height = UsableHeight
W.Top = 0
' Adjust the vertical position of each window, if necessary.
ElseIf W.Top + W.Height > UsableHeight Then
W.Top = UsableHeight - W.Height
End If
' Adjust the width of each window, if necessary.
If W.Width > UsableWidth Then
W.Width = UsableWidth
W.Left = 0
' Adjust the horizontal position of each window, if necessary.
ElseIf W.Left + W.Width > UsableWidth Then
W.Left = UsableWidth - W.Width
End If
Next W
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。