Return the name of this layer in the Data Source.
(self)
| 104 | |
| 105 | @property |
| 106 | def name(self): |
| 107 | "Return the name of this layer in the Data Source." |
| 108 | name = capi.get_fd_name(self._ldefn) |
| 109 | return force_str(name, self._ds.encoding, strings_only=True) |
| 110 | |
| 111 | @property |
| 112 | def num_feat(self, force=1): |
nothing calls this directly
no test coverage detected