You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 26, 2022. It is now read-only.
this throws a NullReferenceException because the B2 Cell isn't created yet. CellCollection should implicitly create an empty cell.
Two problems:
What if I then assign a Cell to B2? Since Cell is created implicitly, CellCollection doesn't have a good way to know if the Cell came from a Cell object or from an implicit creation.
Also, Cell.CellType is immutable. I forgot why, since it only matters on save, so I might change that.
The text was updated successfully, but these errors were encountered:
This would require separating the Cell Content, and the Cell Formatting into two separate classes. The CellContent would contain the CellType, Value, and Format, while the CellFormat would include the Font, Border etc.
When i want to do
this throws a NullReferenceException because the B2 Cell isn't created yet. CellCollection should implicitly create an empty cell.
Two problems:
What if I then assign a Cell to B2? Since Cell is created implicitly, CellCollection doesn't have a good way to know if the Cell came from a Cell object or from an implicit creation.
Also, Cell.CellType is immutable. I forgot why, since it only matters on save, so I might change that.
The text was updated successfully, but these errors were encountered: