How to define a Value Table parameter in ArcGIS Pro SDK?

455
0
04-30-2019 06:12 AM
by Anonymous User
Not applicable

I'm trying to convert 2D maps to 3D views using ApplySymbologyFromLayer_management tool in ArcGIS Pro SDK. Here is the code I used to apply 3D symbology to a 2D feature class:

object[] args = {layer2D, symbology3D };

var parameters = Geoprocessing.MakeValueArray(args);

var gp_result = await Geoprocessing.ExecuteToolAsync("ApplySymbologyFromLayer_management", parameters);

I'm trying to set the symbology field as a parameter. Here (https://pro.arcgis.com/en/pro-app/tool-reference/data-management/apply-symbology-from-layer.htm) it says the symbology field needs to be of Value Table type in Python but what is the synonym for Value Table in Pro SDK?

0 Kudos
0 Replies