Window.GetPoint 方法 (Word)
傳回指定範圍或圖案的螢幕座標。
語法
expression。 GetPoint
( _ScreenPixelsLeft_
, _ScreenPixelsTop_
, _ScreenPixelsWidth_
, _ScreenPixelsHeight_
, _obj_
)
需要 expression。 代表 Window 物件的變數。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
ScreenPixelsLeft | 必要 | Long | 您想讓 Microsoft Word 將物件左邊緣之值傳回其中的變數名稱。 |
ScreenPixelsTop | 必要 | Long | 您想讓 Word 將物件上邊緣之值傳回其中的變數名稱。 |
ScreenPixelsWidth | 必要 | Long | 您想讓 Word 將物件寬度之值傳回其中的變數名稱。 |
ScreenPixelsHeight | 必要 | Long | 您想讓 Word 將物件高度之值傳回其中的變數名稱。 |
obj | 必要 | Object | Range 或 Shape 物件。 |
註解
如果整個範圍或圖案無法顯示在螢幕上,就會發生錯誤。
範例
這則範例會檢查目前的選取項目,並傳回其螢幕座標。
Dim pLeft As Long
Dim pTop As Long
Dim pWidth As Long
Dim pHeight As Long
ActiveWindow.GetPoint pLeft, pTop, pWidth, pHeight, _
Selection.Range
MsgBox "Left = " & pLeft & vbLf _
& "Top = " & pTop & vbLf _
& "Width = " & pWidth & vbLf _
& "Height = " & pHeight
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。