Form.CurrentSectionLeft 属性 (Access)

使用此属性可以确定当前节左侧到窗体左侧的距离( 以 twips 为单位)。 Integer 型,可读/写。

语法

表达式CurrentSectionLeft

expression:表示 Form 对象的变量。

备注

CurrentSectionLeft 属性,当用户滚动窗体设置的更改。

对于 DefaultView 属性设置为一个表单时,如果用户滚动到窗体中,设置属性的左边缘的右侧将为负值。

CurrentSectionLeft 属性可用于查找作为连续窗体或在数据表视图中显示在窗体视图的详细信息部分的位置。

示例

下面的示例显示 CurrentSectionLeftCurrentSectionTop 属性设置为连续窗体上的控件。 当用户移到一个新记录时,当前节的属性设置将显示在窗体标题的 lblStatus 标签中。

Private Sub Form_Current() 
 
 Dim intCurTop As Integer 
 Dim intCurLeft As Integer 
 
 intCurTop = Me.CurrentSectionTop 
 intCurLeft = Me.CurrentSectionLeft 
 Me!lblStatus.Caption = intCurLeft & " , " & intCurTop 
 
End Sub

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。