摘要
为指定工具名称返回所需参数的默认值。
语法
GetParameterValue (tool_name, index)
参数 | 说明 | 数据类型 |
tool_name | 参数默认值将返回的工具名称。 | String |
index | 指定工具参数列表中参数的索引位置。 | Integer |
返回值
数据类型 | 说明 |
String | 返回工具的指定参数的默认值。 |
代码示例
GetParameterValue 示例
返回指定工具参数的默认值。
import arcpy
# Returns 'POLYGON'
print(arcpy.GetParameterValue("CreateFeatureClass_management", 2))