GetParameter (arcpy)

摘要

在参数列表中,按所需参数的索引值选择参数。参数以对象的形式返回。

讨论

要将此参数用作文本字符串,请参阅 GetParameterAsText

语法

GetParameter (index)
参数说明数据类型
index

Selects the specified parameter, by its index, from the parameter list.

Integer
返回值
数据类型说明
Object

对象通过指定参数返回。

代码实例

GetParameter 示例

以对象形式获取脚本工具参数。

import arcpy

# Get the spatial reference from the tool dialog.
spatial_ref = arcpy.GetParameter(0)

# Display the Spatial Reference properties
arcpy.AddMessage("Name is: {0}".format(spatial_ref.name))
arcpy.AddMessage("Type is: {0}".format(spatial_ref.type))
arcpy.AddMessage("Factory code is: {0}".format(spatial_ref.factoryCode))

相关主题

5/10/2014