Skip to content

Latest commit

 

History

History
50 lines (27 loc) · 1.18 KB

Access.Form.AfterLayout(property).md

File metadata and controls

50 lines (27 loc) · 1.18 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Form.AfterLayout property (Access)
vbaac10.chm13550
vbaac10.chm13550
Access.Form.AfterLayout
8d548e7b-6d68-4631-2c59-f6b8d39cbb12
03/09/2019
medium

Form.AfterLayout property (Access)

Returns or sets a String indicating which macro, event procedure, or user-defined function runs when the AfterLayout event occurs. Read/write.

Syntax

expression.AfterLayout

expression A variable that represents a Form object.

Remarks

Valid values for this property are:

  • macroname, where macroname is the name of a macro.

  • [Event Procedure], which indicates the event procedure associated with the AfterLayout event for the specified object.

  • =functionname(), where functionname is the name of a user-defined function.

Example

The following example specifies that when the AfterLayout event occurs on the first form of the current project, the associated event procedure should run.

Forms(0).AfterLayout = "[Event Procedure]" 

[!includeSupport and feedback]