``register_group`` registers a group in the schema for this :class:`Settings` instance :param str group: a unique identifier :param str title: a user friendly name appropriate for UI presentation :return: True on success, False on failure. :rtype: bool :Example: >>> Settings().regi
(self, group: str, title: str)
| 201 | core.BNSettingsSetResourceId(self.handle, resource_id) |
| 202 | |
| 203 | def register_group(self, group: str, title: str) -> bool: |
| 204 | """ |
| 205 | ``register_group`` registers a group in the schema for this :class:`Settings` instance |
| 206 | |
| 207 | :param str group: a unique identifier |
| 208 | :param str title: a user friendly name appropriate for UI presentation |
| 209 | :return: True on success, False on failure. |
| 210 | :rtype: bool |
| 211 | :Example: |
| 212 | |
| 213 | >>> Settings().register_group("solver", "Solver") |
| 214 | True |
| 215 | >>> |
| 216 | """ |
| 217 | return core.BNSettingsRegisterGroup(self.handle, group, title) |
| 218 | |
| 219 | def register_setting(self, key: str, properties: str) -> bool: |
| 220 | """ |
no outgoing calls
no test coverage detected