This is a factory class which holds information about all the borders in a cell. Its implementation and use is merely to simplify the handling of the different cell borders (left, top, bottom, right, diagonal).
Default class constructor. |
|
Actually draws all the cell borders based on their drawing priority. |
XLSBorderFactory
(object)¶This is a factory class which holds information about all the borders in a cell. Its implementation and use is merely to simplify the handling of the different cell borders (left, top, bottom, right, diagonal).
__init__
(self, book, border, default_colour)¶Default class constructor.
book – an instance of the xlrd.Book class;
border – an instance of xlrd.formatting.XFBorder class;
default_colour – the “magic” colour used by Excel to draw non-custom border lines.
Draw
(self, dc, rect)¶Actually draws all the cell borders based on their drawing priority.
Note
The drawing priority is assigned depending on if the border is a custom one or not. Customized borders are drawn last.