GetParameterCount

摘要

返回指定工具的参数值计数。如果此工具包含在自定义工具箱中,请使用 ImportToolbox 访问此自定义工具。

语法

GetParameterCount (tool_name)
参数说明数据类型
tool_name

参数数量将返回的工具名称。

String
返回值
数据类型说明
Integer

指定工具的参数数量。

代码示例

GetParameterCount 示例

返回工具参数数量。

import arcpy
# Returns 7
print(arcpy.GetParameterCount("Buffer_analysis"))

相关主题