``contains`` determine if a setting identifier exists in the active settings schema :param str key: the setting identifier :return: True if the identifier exists in this active settings schema, False otherwise :rtype: bool
(self, key: str)
| 234 | return core.BNSettingsRegisterSetting(self.handle, key, properties) |
| 235 | |
| 236 | def contains(self, key: str) -> bool: |
| 237 | """ |
| 238 | ``contains`` determine if a setting identifier exists in the active settings schema |
| 239 | |
| 240 | :param str key: the setting identifier |
| 241 | :return: True if the identifier exists in this active settings schema, False otherwise |
| 242 | :rtype: bool |
| 243 | """ |
| 244 | return core.BNSettingsContains(self.handle, key) |
| 245 | |
| 246 | def is_empty(self) -> bool: |
| 247 | """ |
no outgoing calls
no test coverage detected