CopyParameter

摘要

Copies the specified parameter by index to another parameter in the script tool. The specified parameters must be of the same data type.

语法

CopyParameter (to_param, from_param)
参数说明数据类型
to_param

The index position of the parameter to be copied.

Integer
from_param

The index position of the parameter that will be copied to.

Integer

代码示例

CopyParameter example

Copy input parameter to output parameter.

import arcpy

# Copy the script tool's specified input parameter object
#  to the script tool's specified output parameter.
arcpy.CopyParameter(0, 1) 

相关主题


7/10/2012