Open
Description
Add a VRule
class for specifying the format of vertical rules in tables.
-
VRule
constructor arguments (all keyword-only; cf.HRule
constructor arguments in Add anHRule
class #3):fill: Optional[str] = None
joint: Optional[str] = None
top_cap: Optional[str] = None
bottom_cap: Optional[str] = None
border_style: Optional[BorderStyle] = None
-
VRule
s are passed to aTxtble
as elements of acolsep
list configuration option and/or as the value of acolsep_fill
configuration option.- A string element
s
ofcolsep
/value ofcolsep_fill
is equivalent toVRule(fill=s, joint=s)
.
- A string element
-
HRule
(Add anHRule
class #3) andVRule
should havepriority: int
parameters (defaulting to 0) for controlling what happens when anHRule
and aVRule
meet; the rule with the higher priority is used to draw the joint, and if they have the same priority, ??? -
When an
HRule
orVRule
meets the table border, whose cap style is used?
Activity
Txtble
subclasses with default values configured for various common table styles #24