Esempio n. 1
0
        /// <summary>
        /// 获取单元格的信息
        /// </summary>
        /// <param name="cell"></param>
        /// <returns></returns>
        private CellConfig GetCellInfo(string value, int row, int column, string CellComment)
        {
            CellConfig cellConfig = null;

            if (IsExp(value))
            {
                cellConfig = new CellConfig
                {
                    ColIndex  = column,
                    RowIndex  = row,
                    FieldName = ParseFieldName(value),
                };
            }
            return(cellConfig);
        }
Esempio n. 2
0
 public ExcelCellInfo(CellConfig config)
 {
     this.Structure = config;
 }