getCode
The getCode
method gets an array of the codes for a property or qualifier. This array usually contains a single item unless the property or qualifier is negated (see getNegated).
Syntax
getCode()
Returns
(strings) An array of codes for the properties or qualifiers.
Examples
For a LuaIncompleteFactProperty
object:
local props = incomplete:getProperties() for i=1,#props do if not props[i]:getNegated() then local findCode = props[i]:getCode()[1] if "QGENDER" == findCode then ...
For a LuaIncompleteFactQualifier
object:
local quals = props[i]:getQualifiers() for i=1,#quals do if not quals[i]:getNegated() then local findCode = quals[i]:getCode()[1] if "SPOINTINTIME" == findCode then ...