How to use the pyexcelerate.Utility.lazy_set function in PyExcelerate

To help you get started, we’ve selected a few PyExcelerate examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github kz26 / PyExcelerate / pyexcelerate / Style.py View on Github external
def borders(self, value):
        Utility.lazy_set(self, '_borders', None, value)
github kz26 / PyExcelerate / pyexcelerate / Borders.py View on Github external
def bottom(self, value):
        Utility.lazy_set(self, '_bottom', None, value)
github kz26 / PyExcelerate / pyexcelerate / Font.py View on Github external
def color(self, value):
        Utility.lazy_set(self, '_color', None, value)
github kz26 / PyExcelerate / pyexcelerate / Borders.py View on Github external
def right(self, value):
        Utility.lazy_set(self, '_right', None, value)
github kz26 / PyExcelerate / pyexcelerate / Borders.py View on Github external
def top(self, value):
        Utility.lazy_set(self, '_top', None, value)
github kz26 / PyExcelerate / pyexcelerate / Fill.py View on Github external
def background(self, value):
        Utility.lazy_set(self, '_background', None, value)
github kz26 / PyExcelerate / pyexcelerate / Borders.py View on Github external
def left(self, value):
        Utility.lazy_set(self, '_left', None, value)