Form.WindowLeft 属性 (Access)
返回一个 Integer 类型的值,指示窗体左边缘相对于 Microsoft Access 窗口左边缘的屏幕位置( 以 twips 为单位 )。 此为只读属性。
语法
表达式。WindowLeft
expression:表示 Form 对象的变量。
备注
使用 Move 方法可以更改窗体的位置。
示例
下面的示例返回当前项目中第一个窗体的顶端和左边缘的屏幕位置。
With Forms(0)
MsgBox "The form is " & .WindowLeft _
& " twips from the left edge of the Access window and " _
& .WindowTop _
& " twips from the top edge of the Access window."
End With
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。