Hi. I'm fairly new to python toolboxes. I'd like to setup my parameters as hardcoded in for debugging purposes (see link here)
I'm not sure what format is used for the value table data type, or where documentation is located. The pages i've found list how to get parameters as value table, but not what a value table object looks like once it's created (which is what I believe i need).
Any help much appreciated!
Solved! Go to Solution.
Creating a new Python toolbox—ArcGIS Pro | Documentation
and
Defining parameters in a Python toolbox—ArcGIS Pro | Documentation
value table is in the second link
Creating a new Python toolbox—ArcGIS Pro | Documentation
and
Defining parameters in a Python toolbox—ArcGIS Pro | Documentation
value table is in the second link
thanks for links, was able to hardcode them in using the statement below (incase anyone else is looking for this)
param1.values = [['NAME', 'SUM']]