Property returns the property value for the given key. It returns nil if it doesn't exist.
(key string)
| 413 | // Property returns the property value for the given key. |
| 414 | // It returns nil if it doesn't exist. |
| 415 | func (n *NodeBase) Property(key string) any { |
| 416 | return n.Properties[key] |
| 417 | } |
| 418 | |
| 419 | // DeleteProperty deletes the property with the given key. |
| 420 | func (n *NodeBase) DeleteProperty(key string) { |
no outgoing calls