Сводка
Объект Value возвращается при GetParameterInfo его использовании в классе ToolValidator инструмента-скрипта и в функции GetParameter - в зависимости от типа параметра.
Свойства
Владение | Объяснение | Тип данных |
isEmpty (только чтение) | Указывает, является ли объект Value (Значение) пустым. | Boolean |
value (чтение и запись) | Предоставляет значение объекта Value (Значение). | String |
Пример кода
Пример объекта Value (Значение)
UpdateParameter Заполняет список значений для второго параметра на основе имен атрибутов в файле NetCDF.
def updateParameters(self):
"""Modify the values and properties of parameters before internal
validation is performed. This method is called whenever a parameter
has been changed."""
# If the parameter has been altered, but not validated
if self.params[0].altered and not self.params[0].hasBeenValidated:
# Create a NetCDFFIleProperties object based on the input and
# use it to populate the value list of the sceond parameter.
net_cdf = arcpy.NetCDFFileProperties(self.params[0].value.value)
att_names = net_cdf.getAttributeNames()
self.params[1].filter.list = att_names
self.params[1].value = att_names[0]
return