Source code for opimodel.borders

NONE_STYLE = 0
LINE_STYLE = 1


[docs]class Border(object): def __init__(self, style, width, color, alarm): self.alarm = alarm self.color = color self.style = style self.width = width