GetParameterValue (arcpy)

摘要

For a specified tool name, returns the default value of the desired parameter.

语法

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

Returns the default value of the specified parameter for the tool.

代码实例

GetParameterValue example

Returns the default value for specified tool parameter.

import arcpy

# Returns 'POLYGON'
arcpy.GetParameterValue("CreateFeatureClass_management", 2)

相关主题

9/15/2013