Share via


Application.SetHiddenAttribute Method (Access)

The SetHiddenAttribute method sets the hidden attribute of an Access object.

Syntax

.SetHiddenAttribute(ObjectType, ObjectName, fHidden)

A variable that represents an Application object.

Parameters

Name

Required/Optional

Data Type

Description

ObjectType

필수

AcObjectType

A AcObjectType constant that specifies the type of Access object.

ObjectName

필수

String

The name of the Access object.

fHidden

필수

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

참고 항목

개념

Application Object Members

Application Object