Tolk_TrySAPI method

void Tolk_TrySAPI(
  1. bool trySAPI
)

Name: Tolk_TrySAPI Description: Sets if Microsoft Speech API (SAPI) should be used in the screen reader auto-detection process. The default is not to include SAPI. The SAPI driver will use the system default synthesizer, voice and soundcard. This function triggers the screen reader detection process if needed. For best performance, you should call this function before calling Tolk_Load. Parameters: trySAPI: whether or not to include SAPI in auto-detection. Returns: None.

Implementation

void Tolk_TrySAPI(
  bool trySAPI,
) {
  return _Tolk_TrySAPI(
    trySAPI,
  );
}