Enum PropertyAttributes

A set of JSObject property attributes. Combine multiple attributes with bitwise OR.

enum PropertyAttributes : ubyte { ... }

Enum members

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

See Also

JSObject.deleteProperty

dontEnumerate 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.
none Specifies that a property has no special attributes.
readOnly Specifies that a property is read-only.
static_ Specifies that a property is static.