摘要
为指定工具名称返回所需参数的默认值。 该参数通过索引或参数名称指定。
语法
GetParameterValue (tool_name, index)
参数 | 说明 | 数据类型 |
tool_name | The tool name for which the parameter default value will be returned. | String |
index | The index position of the parameter or the name of the parameter. | Integer |
数据类型 | 说明 |
String | 返回工具的指定参数的默认值。 |
代码示例
使用参数的位置索引返回指定工具参数的默认值。
import arcpy
# Returns 'POLYGON'
print(arcpy.GetParameterValue("CreateFeatureClass_management", 2))
使用参数的名称返回指定工具参数的默认值。
import arcpy
# Returns 'POLYGON'
print(arcpy.GetParameterValue("CreateFeatureClass_management", "geometry_type"))