ElectronApp.on('accessibility-support-changed') method
ElectronApp › on(‘accessibility-support-changed’)
Unofficial
Registers a listener for theaccessibility-support-changed event.Emitted when Chrome's accessibility support changes. macOS and Windows only.
Signature:
on(event: "accessibility-support-changed", listener: (event: ElectronEvent, accessibilitySupportEnabled: boolean) => void): thisParameters:
| Parameter | Type | Description |
|---|---|---|
| event | "accessibility-support-changed" | The event name. |
| listener | (event: ElectronEvent, accessibilitySupportEnabled: boolean) => void | The event handler. |
Returns: this — This ElectronApp instance.