ACAT.Extensions.Default.UI.Scanners.AlphabetScannerQwerty70Keys._alphabetScannerCommon_EvtFormatPreditionWord C# (CSharp) Method

_alphabetScannerCommon_EvtFormatPreditionWord() private method

Handler to format the word prediction words. Add an index number prefix.
private _alphabetScannerCommon_EvtFormatPreditionWord ( int index, string word ) : string
index int index of the word
word string word
return string
        private string _alphabetScannerCommon_EvtFormatPreditionWord(int index, string word)
        {
            return Common.AppPreferences.PrefixNumbersInWordPredictionList ?
                        (((index == 10) ? 0 : index) + ": " + word) :
                        word;
        }