hello.I made a desktop application ArcGIS 9.3 Engine with .Net, long time ago.Polygon - Intersect - user input Line = intersected points
ITopologicalOperator topologicalOperator = feature.Shape as ITopologicalOperator;
topologicalOperator.Simplify();
IGeometryCollection geometryColl = topologicalOperator.Intersect(geometry, esriGeometryDimension.esriGeometry0Dimension) as IGeometryCollection;
for (int i = 0; i < geometryColl.GeometryCount; i++)
{
IPoint _point = geometryColl.get_Geometry(i) as IPoint;
}
like attachement picture.[ATTACH=CONFIG]19249[/ATTACH]How do i this ArcGIS Server 10.1 JSAPI ?I try the polygon rings to simpleline and roop esri.geometry.getLineIntersection()...then horrable times blocked UI...