本文整理汇总了Python中gramps.gen.plug.docgen.TableCellStyle.set_borders方法的典型用法代码示例。如果您正苦于以下问题:Python TableCellStyle.set_borders方法的具体用法?Python TableCellStyle.set_borders怎么用?Python TableCellStyle.set_borders使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gramps.gen.plug.docgen.TableCellStyle
的用法示例。
在下文中一共展示了TableCellStyle.set_borders方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: make_default_style
# 需要导入模块: from gramps.gen.plug.docgen import TableCellStyle [as 别名]
# 或者: from gramps.gen.plug.docgen.TableCellStyle import set_borders [as 别名]
def make_default_style(self, default_style):
""" Add the styles used in this report """
self.make_my_style(default_style, "DIFF-Text",
_('Text'), 12, justified="left")
self.make_my_style(default_style, "DIFF-Title",
_('Text'), 16, justified="left",
bold=1)
self.make_my_style(default_style, "DIFF-Heading",
_('Text'), 14, justified="left",
bold=1, italic=1)
self.make_my_style(default_style, "DIFF-TableHeading",
_('Text'), 12, justified="left",
bold=1)
#Table Styles
cell = TableCellStyle()
cell.set_borders(1)
default_style.add_cell_style('DIFF-TableCell', cell)
cell = TableCellStyle()
default_style.add_cell_style('DIFF-TableCellNoBorder', cell)
table = TableStyle()
table.set_width(100)
table.set_columns(3)
table.set_column_width(0, 50)
table.set_column_width(1, 25)
table.set_column_width(2, 25)
default_style.add_table_style('DIFF-Table3',table)
table = TableStyle()
table.set_width(100)
table.set_columns(2)
table.set_column_width(0, 15)
table.set_column_width(1, 85)
default_style.add_table_style('DIFF-Table2',table)