ResourceProperty class: Difference between revisions
From Catglobe Wiki
More actions
No edit summary |
No edit summary |
||
| Line 32: | Line 32: | ||
|Description=<nowiki>Saves resource properties for the specified resource.</nowiki>}} | |Description=<nowiki>Saves resource properties for the specified resource.</nowiki>}} | ||
}} | }} | ||
=== <span style="color:#DF8621">'''Examples'''</span> === | |||
<source lang="javascript"> | |||
number qnaire; | |||
array a = ResourceProperty_getResourcesProperties(qnaire); | |||
array p; | |||
for(i for 0; a.Count){ | |||
ResourceProperty r = a[i]; | |||
if(r.Name == "PanelType") { | |||
r.Value=2; | |||
p.Add(r); | |||
} | |||
} | |||
ResourceProperty_saveResourceProperties(qnaire, p); | |||
</source> | |||
Revision as of 04:39, 24 July 2026
ResourceProperty
Represents a resource property constant with its current value.
Parent class
Inherits from Array
Methods
Properties
- number Average { get; } - Average of the objects in the Array object. Can only use if all the elements are of type Number
- number Max { get; } - Largest of all the objects in the Array object. Can only use if all the elements are of type Number
- number Min { get; } - Smallest of all the objects in the Array object. Can only use if all the elements are of type Number
- string Name { get; } - Display label of the constant option
- string ObjectTypeName { get; } - The name of the type of object.
- int OptionId { get; } - Primary key of the constant option
- number Sum { get; } - Sum of all the objects in the Array object. Can only use if all the elements are of type Number
- int Type { get; } - Constant-option type (see RESOURCE_PROPERTY_TYPE constants)
- TypeInformation TypeInformation { get; } - Get information about this class.
- object Value { get; set; } - Current value of the constant
Static Methods
- array ResourceProperty_getResourcesProperties(int resource unique id "Resource unique id") - Returns the resource properties of multiple resources.
- Dictionary ResourceProperty_getResourcesProperties(array resource unique ids "Array of resource unique ids") - Returns the resource properties of multiple resources.
- Empty ResourceProperty_saveResourceProperties(int resource unique id "Resource unique id", array propertyArray "Array of resource property objects") - Saves resource properties for the specified resource.
Examples
number qnaire;
array a = ResourceProperty_getResourcesProperties(qnaire);
array p;
for(i for 0; a.Count){
ResourceProperty r = a[i];
if(r.Name == "PanelType") {
r.Value=2;
p.Add(r);
}
}
ResourceProperty_saveResourceProperties(qnaire, p);