B
balparmak
I am working on below a python code in ArcGIS to zoom into shapefile's attribute table row feautes without selected until the end of table one by one.
I am trying to use this code but this one requires that row need to be selected.
import arcpy
mxd = arcpy.mapping.MapDocument('CURRENT')
df = arcpy.mapping.ListDataFrames(mxd, "Layers") [0]
df.zoomToSelectedFeatures()
arcpy.RefreshActiveView()
Any Help!
Thanks
I am trying to use this code but this one requires that row need to be selected.
import arcpy
mxd = arcpy.mapping.MapDocument('CURRENT')
df = arcpy.mapping.ListDataFrames(mxd, "Layers") [0]
df.zoomToSelectedFeatures()
arcpy.RefreshActiveView()
Any Help!
Thanks