Application.GetHiddenAttribute method (Access)

The GetHiddenAttribute method returns the value of a hidden attribute of a Microsoft Access object in the object's Properties dialog box, available by selecting the object in the Database window and choosing Properties on the View menu.

Syntax

expression.GetHiddenAttribute (ObjectType, ObjectName)

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
ObjectType Required AcObjectType An AcObjectType constant that specifies the type of Access object.
ObjectName Required String The name of the Access object.

Return value

Boolean

Remarks

The GetHiddenAttribute method (along with the SetHiddenAttribute method) provides a means of changing an object's hidden attribute from Visual Basic code. With these methods, you can set or read the hidden option available in the object's Properties dialog box.

Because the user can set the hidden attributes by selecting or clearing a check box, the GetHiddenAttribute method returns True if the option setting is Yes (the check box is selected) or False if the option setting is No (the check box is cleared).

For example, to set an option of this kind by using the SetHiddenAttribute method, specify True or False for the setting argument, as in the following.

Application.SetHiddenAttribute acTable,"Customers", True

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.