I am trying to select one polygon feature from the attribute table and export to a new featureclass using C# and ArcGIS Pro.
Solved! Go to Solution.
This can be done by calling the Copy Features Geoprocessing Tool from a Pro Add-in. GP Tools can be called from an add-in using the ExecuteToolAsync method.
Here is a sample that shows how to use ExecuteToolAsync: GeoprocessingExecuteAsync
Thanks
Uma
This can be done by calling the Copy Features Geoprocessing Tool from a Pro Add-in. GP Tools can be called from an add-in using the ExecuteToolAsync method.
Here is a sample that shows how to use ExecuteToolAsync: GeoprocessingExecuteAsync
Thanks
Uma
Thank you Uma. Very helpful!!