EqptProperty

Returns the value of a named property for a piece of equipment in Qubes.

Syntax

EqptProperty(eqptGPAOID, propName)
eqptGPAOID = a Qubes equipment GPAOID
propName = name of the equipment property whose value you want to retrieve

Remarks

(Qubes 9.0) Returns "" if the requested GPAOID is an empty string.

Returns #VAL! if the requested equipment or property does not exist.

Alias functions provide direct access to certain properties.
The following properties can be accessed:

NameRetrieved informationDirect alias
GPAOIDEquipment GPAOIDEqptGPAOID(eqptGPAOID)
NAMEEquipment nameEqptName(eqptGPAOID)
DESCRIPTIONDescription of the equipmentEqptDescription(eqptGPAOID)
NATURENature of the equipmentEqptNature(eqptGPAOID)
FAMILYEquipment familyEqptFamily(eqptGPAOID)
TYPEType of equipmentEqptType(eqptGPAOID)
PARAMS.xxxValue of parameter "xxx"EqptParameter(eqptGPAOID, paramName[, defaultValue])

Example

If you have equipment with a GPAOID of "MBAG01," a name of "Manual Bagger, Line 1" and a type of "Bagger", you will get:

EqptProperty("MBAG01", "NAME") = "Manual Bagger, Line 1"
EqptName("MBAG01") = "Manual Bagger, Line 1"
EqptType("MBAG01") = "Bagger"

Classification

Qubes