摘要
用于使用对象按索引来设置指定参数属性。将对象从脚本传递到脚本工具时会用到此函数。如果您需要将文本值传递到脚本工具,请使用 SetParameterAsText。
语法
SetParameter (index, value)
参数 | 说明 | 数据类型 |
index | 参数列表中指定参数的索引位置。 | Integer |
value | 将设置指定参数属性的对象。 | Object |
代码示例
SetParameter 示例
将对象传递到指定工具参数。
import arcpy
# Get the input feature class name.
#
fc = arcpy.GetParameterAsText(0)
# Obtain the spatial reference object and return it to the tool.
SR = arcpy.Describe(fc).spatialReference
arcpy.SetParameter(1, SR)