GetParameterValue (arcpy)
摘要
为指定工具名称返回所需参数的默认值。
语法
GetParameterValue (tool_name, index)
参数 | 说明 | 数据类型 |
tool_name |
The tool name for which the parameter default value will be returned. | String |
index |
Index position of the parameter in the specified tool's parameter list. | Integer |
数据类型 | 说明 |
String |
返回工具的指定参数的默认值。 |
代码实例
GetParameterValue 示例
返回指定工具参数的默认值。
import arcpy
# Returns 'POLYGON'
print(arcpy.GetParameterValue("CreateFeatureClass_management", 2))
相关主题
5/10/2014