以點為單位的專案視窗取得可用的最大高度。 唯讀的 Double。
語法
表情。可用高度
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 支援與意見反應。