Does anyone know why after fetching a describe object on a feature class and returning the Extent property, it returns the extent of the feature class in the current data frame coordinate system, not the extent of the data in its native coordinate system.With data frame set to Web Mercator Aux Spheredesc = gp.Describe(input)
extent = desc.Extent
gp.AddMessage(extent)
returns-13375837.6548833 5207681.31544134 -13372787.8830635 5209463.98928341With data frame set to NAD 83 Albers it returns587035.227167865 916043.393770546 589292.681698993 917353.957017839Any thoughts?Also, a workaround would be to check the data frame projection against the input in the ToolValidator code, any ideas if there's a way to grab data frame projection from the geoprocessor? I don't see any....Thanks, Mike