BordersCollection constructor
BordersCollection(
- Workbook book
Creates an new instances of borders.
Implementation
BordersCollection(Workbook book) {
_workbook = book;
left = CellBorder(LineStyle.none, '#000000');
right = CellBorder(LineStyle.none, '#000000');
top = CellBorder(LineStyle.none, '#000000');
bottom = CellBorder(LineStyle.none, '#000000');
all = CellBorder(LineStyle.none, '#000000');
}