Select to view content in your preferred language

Looking for a way to add a point to a feature class

240
1
12-06-2023 12:26 PM
JoseSanchez
Regular Contributor

Hello everyone,

 

I am looking in the ArcGIS Pro 3.2 SDK for .NET library for a way to add a point to a feature class

This is how I did it in ArcGIS v10.7   vb.net

Dim pPoint As IPointpPoint = New PointClass
pPoint.X = Convert.ToDouble(r.Item("X").ToString)
pPoint.Y = Convert.ToDouble(r.Item("Y").ToString)

 

Thanks

0 Kudos
1 Reply
GKmieliauskas
Esri Regular Contributor

Hi,

Look at ArcGIS Pro SDK community  AddFeatureTest sample

0 Kudos