Enum PropertyAttributes
A set of JSObject property attributes. Combine multiple attributes with bitwise OR.
enum PropertyAttributes
: ubyte { ... }
Enum members
Name | Description |
---|---|
changeAll
|
|
dontDelete
|
Specifies that the delete operation should fail on a property.
See Also |
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. |