예제 #1
0
        public bool ContainsCell(BookSheetKey key, int rowIndex, int columnIndex)
        {
            BlankCellSheetGroup bcsg = (BlankCellSheetGroup)_sheetGroupsByBookSheet[key];

            if (bcsg == null)
            {
                return(false);
            }
            return(bcsg.ContainsCell(rowIndex, columnIndex));
        }