ICell.cs 299 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Biff8Excel.Interfaces
  5. {
  6. public interface ICell
  7. {
  8. //string CellName
  9. //{
  10. // set;
  11. // get;
  12. //}
  13. object ResolvedValue
  14. {
  15. get;
  16. }
  17. }
  18. }