Hi,
I run python script using following code
desc = arcpy.Describe(fc)
sindex = str(desc.hasSpatialIndex)
stype = desc.featureType
print str(fc)+ "--"+sindex + "--"+stype
it returns the feature class name and type correctly. but it doesnt return the correct value for hasSpatialIndex.
It returns the values as true when the ArcCatelog show that the layer doesnt have spatial index.
any idea