Skip to content

ElectronApp.on('accessibility-support-changed') method

ElectronApp › on(‘accessibility-support-changed’)

Unofficial

Registers a listener for the accessibility-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): this

Parameters:

ParameterTypeDescription
event"accessibility-support-changed"The event name.
listener(event: ElectronEvent, accessibilitySupportEnabled: boolean) => voidThe event handler.

Returns: thisThis ElectronApp instance.