ObjectAttributes Property  
 

Gets the attributes for the current object.

Syntax

object.ObjectAttributes

Remarks

This property returns an integer value that specifies the attributes for the current storage object. The object attributes are comprised of one or more bitflags.

Value Constant Description
0 webObjectDefault Default object attributes. This value is used to indicate the object can be modified, or that the attributes for a previously existing object should not be changed.
1 webObjectNormal A normal object that that can be read and modified by the application. This is the default attribute for new objects that are created by the application.
2 webObjectReadOnly A read-only object that can only be read by the application. Attempts to modify or replace the contents of the object will fail. Read-only objects can be deleted.
4 webObjectHidden A hidden object. Objects with this attribute are not returned when enumerated using the FindFirst and FindNext methods. The object can only be accessed directly when specifying its label.

Data Type

Integer (Int32)

See Also

Exists Method, FindFirst Method, FindNext Method