Hi,
I'm quite new to arcpy. I found a way to remove all of the layers in a dataframe using arcpy, but i still see the dataframe border on the maps. Is there a way to remove an entire dataframe or remove the dataframe border using arcpy?
Here is my code:
for lyr in arcpy.mapping.ListLayers(mxd, "", df):
arcpy.mapping.RemoveLayer(df,lyr)
Thanks!
Shane