PropertyObject::GetFirstProperty
Defined in:
Returns the first property stored in a property object.
C4Properties.h
Prototype
Property *GetFirstProperty(void) const;
Description
The GetFirstProperty
function returns the first property stored in a property object. All of the properties stored in a property object can be iterated by repeatedly calling the MapElement::GetNextMapElement
function on the returned pointer. If no properties are stored in a property object, then the return value is nullptr
.
See Also