Return True if the value of this field isn't null, False otherwise.
(self)
| 95 | # #### Field Properties #### |
| 96 | @property |
| 97 | def is_set(self): |
| 98 | "Return True if the value of this field isn't null, False otherwise." |
| 99 | return capi.is_field_set(self._feat.ptr, self._index) |
| 100 | |
| 101 | @property |
| 102 | def name(self): |
no outgoing calls