Hi,all!
I made a ShapefileFeatureTable like this:
m_table1 = new ShapefileFeatureTable("E:/test/tp2.shp")(tp2 is a polyline shapefile);
i can use m_table1->extent().xMax() know the evelope's x,y coords;
but when i want to know the x,y coord of the point which explode by the polylineshapefile,
i dont know how to work with it,
Just like the function in ArcPy:
arcpy.da.SearchCursor(polyLineShapeFile, ['SHAPE@X', 'SHAPE@Y', 'SHAPE@M'], explode_to_points=True)
thans a lot!!