Is there a way to extent the Fields of Shapefile Feature Table, such as adding adding a new Column to the table
The only option that i m seeing is FeatureTable.Fields.Count not FeatureTable.Fields.Add just like any other list or collection class or method
Solved! Go to Solution.
You cannot change the table schema of an established table after creation in Runtime.
You could use ArcGIS Pro to do this though.
Additionally if you're building an app using WPF (or even our preview for WinUI...) then you may also be able to use ArcGIS Runtime Local Server to achieve this. You will need to write a custom Model or Python Script in ArcGIS Pro, run it, and then use the Package Result tool to create a Geoprocessing Package (with support for ArcGIS Runtime). Note there may be additional licensing needed if you are using the Local Server component, for more information see: https://developers.arcgis.com/net/local-server/.
You cannot change the table schema of an established table after creation in Runtime.
You could use ArcGIS Pro to do this though.
Additionally if you're building an app using WPF (or even our preview for WinUI...) then you may also be able to use ArcGIS Runtime Local Server to achieve this. You will need to write a custom Model or Python Script in ArcGIS Pro, run it, and then use the Package Result tool to create a Geoprocessing Package (with support for ArcGIS Runtime). Note there may be additional licensing needed if you are using the Local Server component, for more information see: https://developers.arcgis.com/net/local-server/.