Example #1
0
def setOptNum(props, key, value):
    return SXOpts.setOptNum(props, key, value)
Example #2
0
def delOpt(props, key):
    return SXOpts.delOpt(props, key)
Example #3
0
def getOptNum(props, key, deflt=0):
    return SXOpts.getOptNum(props, key, deflt)
Example #4
0
def getOptInt(props, key, deflt=0):
    return SXOpts.getOptInt(props, key, deflt)
Example #5
0
def hasOpt(props, key):
    return SXOpts.hasOpts(props, key)
Example #6
0
def getOpt(props, key, deflt=""):
    return SXOpts.getOpt(props, key, deflt)
Example #7
0
def delOpts(props):
    return SXOpts.delOpts(props)
Example #8
0
def saveOpts(props, filePath=None):
    if not filePath:
        return SXOpts.saveOpts(props)
    else:
        return SXOpts.saveOpts(props, filePath)
Example #9
0
def setOpts(props, adict):
    return SXOpts.setOpts(props, adict)
Example #10
0
def hasOpts(props):
    return SXOpts.hasOpts(props)
Example #11
0
def getOpts(props):
    return SXOpts.getOpts(props)
Example #12
0
def loadOpts(filePath):
    return SXOpts.loadOpts(filePath)
Example #13
0
def makeOpts():
    return SXOpts.makeOpts()