Set the value of a geomprop by its name, creating a child element to hold the geomprop if needed.
(self, name, value, typeString = '')
| 225 | # |
| 226 | |
| 227 | def _setGeomPropValue(self, name, value, typeString = ''): |
| 228 | """Set the value of a geomprop by its name, creating a child element |
| 229 | to hold the geomprop if needed.""" |
| 230 | method = getattr(self.__class__, "_setGeomPropValue" + getTypeString(value)) |
| 231 | return method(self, name, value, typeString) |
| 232 | |
| 233 | def _addGeomAttr(self, name): |
| 234 | "(Deprecated) Add a geomprop to this element." |
nothing calls this directly
no test coverage detected