Enum Attribute
The attributes of a property.
enum Attribute
: ubyte { ... }
Enum members
Name | Description |
---|---|
changeAll
|
|
default_
|
Specifies that a property has no special attributes.
See Also
|
dontDelete
|
Specifies that the delete operation should fail on a property.
See Also
|
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. |