Accessibility Tools

Accessibility tools for people with disabilities

Textify not only provides all the common text tools, but it also provides the accessibility tools for people with disabilities. This ensures that applications become usable for such people. The following tools have been implemented:

  • Braille conversion

The below sections explain the details of the above tools.

Braille conversion

In the BrailleBuilder class, you can initiate the Braille text conversion. Currently, we only support text to Braille conversion. You can perform this conversion by calling the ToBraille() function, passing it the sentence of your choice. This uses the Braille map that Textify provides to let you convert text to Braille.

Some elevators provide Braille number representations usually found at the bottom of the floor number in the buttons. For example, you may find ⠼⠙ under the number 4 that indicates the fourth floor.

Calling the above function is so simple! You can just call it like this:

string braille = BrailleBuilder.ToBraille("Hello world!");
// braille = ⠓⠑⠇⠇⠕⠀⠺⠕⠗⠇⠙⠖

Last updated