When an object has multiple optiosn, how I can pass these arguments in one line?
eg. oTableBorder.TopLine has options:
Color (long)
InnerLineWidth (integer)
OuterLineWidth (integer)
LineDistance(integer)
Why is invalid to use
oTableBorder.TopLine = (cRed, 1, 1, 1)
oTableBorder.TopLine = Array(cRed, 1, 1, 1) or
oTableBorder.TopLine = (cRed, 1, "", "") ;