Hi everyone,
I used this statement to get the area value of polygon feature:
But when showing the identify: The Shape.Area is: 20737.12 (not equal 110102.807). Please see the image:
Attachment 31505
Do you know what's wrong with it ?
Thanks and regards,
Tai
I used this statement to get the area value of polygon feature:
Code:
while (pFeature != null)
{
IGeometry shapeCopy = pFeature.ShapeCopy;
IArea area = pFeature.Shape as IArea;
double value = area.Area; // Result is: 110102.807...
// ....
pFeature = pFeatureCursor.NextFeature();
}
Attachment 31505
Do you know what's wrong with it ?
Thanks and regards,
Tai