ApiApp().IsListening

Returns the boolean status of the parent application’s speech recognition “hearing”.

Description

If the listening toggle object (System.Windows.Forms.CheckBox) has been registered via the application, this method returns that CheckBox.Checked value. Note that the application, not the core, is responsible for attaching and handling the CheckBox.CheckedChanged event, and for setting up a platform specific speech recognition solution.

Example Usage (C#)


bool listening = _core.ApiApp().IsListening();

Parameters

None.

Returns

The boolean value of the listening status, always false if no registered CheckBox object.

See Also

  • ApiApp().SetListening