Enum Attribute

The attributes of a property.

enum Attribute : ubyte { ... }

Enum members

NameDescription
changeAll
default_ Specifies that a property has no special attributes.

See Also

PropertyAttributes.none

dontDelete Specifies that the delete operation should fail on a property.

See Also

JSObject.deleteProperty

dontEnum Specifies that a property should not be enumerated by property enumerators and JavaScript for...in loops.
dontSet Specifies that a property is read-only.
isGetter Specifies that a property is a getter Function.
isSetter Specifies that a property is a setter Function.
static_ Specifies that a property is static.