Window.GetPoint 方法 (Word)
返回指定区域或图形的屏幕坐标。
语法
expression。 GetPoint
( _ScreenPixelsLeft_
, _ScreenPixelsTop_
, _ScreenPixelsWidth_
, _ScreenPixelsHeight_
, _obj_
)
expression 是必需的。 一个代表 Window 对象的变量。
参数
名称 | 必需/可选 | 数据类型 | 说明 |
---|---|---|---|
ScreenPixelsLeft | 必需 | Long | 需要 Word 为对象的左边界值返回的变量名。 |
ScreenPixelsTop | 必需 | Long | 需要 Word 为对象的顶部边界值返回的变量名。 |
ScreenPixelsWidth | 必需 | Long | 需要 Word 为对象的宽度返回的变量名。 |
ScreenPixelsHeight | 必需 | Long | 需要 Word 为对象的高度值返回的变量名。 |
obj | 必需 | Object | 一个 区域 或 图形 对象。 |
备注
如果在屏幕上看不到整个区域或图形,则导致出错。
示例
本示例检查当前选定对象并返回其屏幕坐标。
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 支持和反馈,获取有关如何接收支持和提供反馈的指南。