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

Initialize() public method

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

            _alphabetScannerCommon.EvtFormatPreditionWord += _homeScreenCommon_EvtFormatPreditionWord;

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

            //FormBorderStyle = FormBorderStyle.Sizable;
            ControlBox = true;
            return retVal;
        }