public void ThenICanAllExcelCellProperties()
        {
            ExcelInteropHelper.ActivateSheet("RiskRegisterWithScope");
            ExcelInteropHelper.GetCellProperties(5, 8);
            string bgColor   = ExcelCellProperties.BackGroundColor;
            string fontColor = ExcelCellProperties.FontColor;
            string fontSize  = ExcelCellProperties.FontSize;
            string formula   = ExcelCellProperties.Formula;
            string text      = ExcelCellProperties.Text;

            ExcelInteropHelper.GetCellProperties("H5");
            bgColor = ExcelCellProperties.BackGroundColor;
        }