Options
All
  • Public
  • Public/Protected
  • All
Menu
     

Interface HPropDesc

A Property Descriptor that will hide a specified Property.

Hierarchy

  • HPropDesc

Index

Properties

configurable

configurable: false

This property descriptor may not be changed or deleted from the corresponding object.

enumerable

enumerable: false

This property will not shows up during enumeration of the properties on the corresponding object.

writable

writable: false

The value associated with the property may not be changed with an assignment operator.

Optional value

value: any

The value associated with the property. Can be any valid JavaScript value (number, object, function, etc).

Optional get

get: PropGet

An optional callback that acquires a Getter Property.

Optional set

set: PropSet

An optional callback that assign a Setter Property