Hi,
thanks for replay!
I have read the link posted
http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/index.html#//002m000003vs000000
but refer to ArcObject 10 and I use ArcObject 9.3.
Can someone suggest me how use ITopologicalOperator.Intersct?
Please?
public IGeometry Intersect ( IGeometry other, esriGeometryDimension resultDimension );
In order to get the area of intersection, both input geometries have to be polygon type geometry, and you need to choose the result dimenstion to be esriGeometry2Dimension. And you will need IArea interface to get the area.
ITopologicalOperator t = polygon1
IGeometry g = t.Intersect(polygon2, esriGeometry2Dimension)
IArea a = g
a.Area is what you want.
There is no behavior change between 9.3 and 10 for Intersect method.