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