Application.SetHiddenAttribute method (Access)
The SetHiddenAttribute method sets the hidden attribute of an Access object.
Syntax
expression.SetHiddenAttribute (ObjectType, ObjectName, fHidden)
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. |
fHidden | Required | Boolean | True sets the hidden attribute, and False clears the attribute. |
Return value
Nothing
Remarks
Together with the GetHiddenAttribute method, the SetHiddenAttribute method provides a means of changing an object's visibility from Visual Basic code. With these methods, you can set or read the Hidden property available in the object's Properties dialog box.
To set this option by using the SetHiddenAttribute method, specify True or False for the setting, as in the following example.
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.