CopyParameter

Краткая информация

Копирует указанный параметр по индексу или имени в другой параметр в инструменте скрипта. Указанные параметры должны иметь один и тот же тип данных.

Синтаксис

CopyParameter (from_param, to_param)
ПараметрОписаниеТип данных
from_param

The index position of the parameter, or the name of the parameter to be copied.

Integer
to_param

The index position of the parameter, or the name 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)
Пример CopyParameter

Скопируйте входной параметр в выходной, используя имена параметров. У инструмента-скрипта имеется два параметра param_a и param_b.

import arcpy

# Copy the script tool's specified input parameter object
# to the script tool's specified output parameter.
arcpy.CopyParameter("param_a", "param_b")

Связанные разделы