示例#1
0
def Quantity( label, short_label=""):
    c = Column(Float)
    c._horse_label = label
    c._horse_short_label = short_label
    return c
示例#2
0
def TextLine( label, short_label=""):
    c = Column(String)
    c._horse_label = label
    c._horse_short_label = short_label
    return c