Search found 2 matches

by ScandWe
Wed Jun 03, 2015 12:06 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Implementing and extending autocorrect functionality
Replies: 3
Views: 2596

Re: Implementing and extending autocorrect functionality

Thanks for your suggestions. Turns out the multiple calls to DocumentController.surroundWithFragment() made the autocorrect so slow. It is much faster with the insertMultipleFragments and multipleDelete. However, these methods resulted in some other problems. It is no longer possible to use undo to ...
by ScandWe
Mon Jun 01, 2015 4:04 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Implementing and extending autocorrect functionality
Replies: 3
Views: 2596

Implementing and extending autocorrect functionality

I'm trying to implement an autocorrect feature in Oxygen 16.1 because an upgrade to 17 is not possible at this time. To facilitate parts of it, I'm looking for ways to reuse existing spellchecking (16.1) or autocorrect (17) mechanisms but I didn't find any interfaces in the API to intervene before o...