MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / register_group

Method register_group

python/settings.py:203–217  ·  view source on GitHub ↗

``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)

Source from the content-addressed store, hash-verified

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 """

Callers 2

view.pyFile · 0.45
init_pluginFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected