Hi guys,
Is it possible to set more than one output parameter using arcpy.setparameter ?
index = arcpy.GetArgumentCount()-1
output1 = "out1"
arcpy.SetParameter(index , output1)
output2 = "out2"
arcpy.SetParameter(index+1, output2)
Is it possible to set more than one output parameter using arcpy.setparameter ?
Quote:
index = arcpy.GetArgumentCount()-1
output1 = "out1"
arcpy.SetParameter(index , output1)
output2 = "out2"
arcpy.SetParameter(index+1, output2)