Tolk_Braille method

bool Tolk_Braille(
  1. Pointer<WChar> str
)

Name: Tolk_Braille Description: Brailles text through the current screen reader driver, if one is set and supports braille output. If none is set or if it encountered an error, tries to detect the currently active screen reader before brailling the given text. Use this function only if you specifically need to braille text through the current screen reader without also speaking it. Not all screen reader drivers may support this functionality. Therefore, use Tolk_Output whenever possible. You should call Tolk_Load once before using this function. Parameters: str: text to braille. Returns: true on success, false otherwise.

Implementation

bool Tolk_Braille(
  ffi.Pointer<ffi.WChar> str,
) {
  return _Tolk_Braille(
    str,
  );
}