CopyParameter (arcpy)
摘要
按索引将指定参数复制到脚本工具中的另一个参数中。指定参数必须具有相同的数据类型。
语法
CopyParameter (from_param, to_param)
参数 | 说明 | 数据类型 |
from_param |
The index position of the parameter to be copied. | Integer |
to_param |
The index position of the parameter that will be copied to. | Integer |
代码实例
CopyParameter 示例
将输入参数复制到输出参数中。
import arcpy
# Copy the script tool's specified input parameter object
# to the script tool's specified output parameter.
arcpy.CopyParameter(0, 1)
相关主题
5/10/2014