ACAT.Extensions.Default.UI.Scanners.AlphabetScannerAbc70Keys.Initialize C# (CSharp) Method

Initialize() public method

Intitializes the class
public Initialize ( StartupArg startupArg ) : bool
startupArg StartupArg startup params
return bool
        public bool Initialize(StartupArg startupArg)
        {
            _alphabetScannerCommon = new AlphabetScannerCommon(this);

            _alphabetScannerCommon.EvtFormatPreditionWord += _alphabetScannerCommon_EvtFormatPreditionWord;

            bool retVal = _alphabetScannerCommon.Initialize(startupArg);
            if (retVal)
            {
                ScannerCommon.CreateStatusBar();
            }

            return retVal;
        }