A
Property
whose value is a key-value mapping of property names to the computed value of other properties.
Name | Type | Description |
---|---|---|
value |
Object | optional An object, containing key-value mapping of property names to properties. |
createPropertyCallback |
function | optional A function that will be called when the value of any of the properties in value are not a Property. |
Members
-
readonlydefinitionChanged : Event
-
Gets the event that is raised whenever the set of properties contained in this object changes, or one of the properties itself changes.
-
Gets a value indicating if this property is constant. This property is considered constant if all property items in this object are constant.
-
Gets the names of all properties registered on this instance.
Methods
-
Adds a property to this object.
Name Type Description propertyName
String The name of the property to add. value
Any optional The value of the new property, if provided. createPropertyCallback
function optional A function that will be called when the value of this new property is set to a value that is not a Property. Throws:
-
DeveloperError : "propertyName" is already a registered property.
-
-
Compares this property to the provided property and returns
true
if they are equal,false
otherwise.Name Type Description other
Property optional The other property. Returns:
true
if left and right are equal,false
otherwise. -
Gets the value of this property. Each contained property will be evaluated at the given time, and the overall result will be an object, mapping property names to those values.
Name Type Description time
JulianDate The time for which to retrieve the value. result
Object optional The object to store the value into, if omitted, a new instance is created and returned. Note that any properties in result which are not part of this PropertyBag will be left as-is. Returns:
The modified result parameter or a new instance if the result parameter was not supplied. -
Determines if this object has defined a property with the given name.
Name Type Description propertyName
String The name of the property to check for. Returns:
True if this object has defined a property with the given name, false otherwise. -
Assigns each unassigned property on this object to the value of the same property on the provided source object.
Name Type Description source
Object The object to be merged into this object. createPropertyCallback
function optional A function that will be called when the value of any of the properties in value are not a Property. -
Removed a property previously added with addProperty.
Name Type Description propertyName
String The name of the property to remove. Throws:
-
DeveloperError : "propertyName" is not a registered property.
-