当前位置: 首页>>代码示例>>Python>>正文


Python TableCellStyle.set_borders方法代码示例

本文整理汇总了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)
开发者ID:SNoiraud,项目名称:addons-source,代码行数:38,代码来源:differences.py


注:本文中的gramps.gen.plug.docgen.TableCellStyle.set_borders方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。