RemoveTableView (arcpy.mapping)
摘要
可用于移除地图文档 (.mxd) 中数据框内的表。
讨论
RemoveTableView 将从地图文档的特定数据框中移除单个表。
语法
RemoveTableView (data_frame, remove_table)
代码实例
RemoveTableView 示例
以下脚本将从地图文档中移除所有名为 Accidents 的表。
import arcpy
mxd = arcpy.mapping.MapDocument(r"C:\Project\Project.mxd")
for df in arcpy.mapping.ListDataFrames(mxd):
for tbl in arcpy.mapping.ListTableViews(mxd, "", df):
if tbl.name.lower() == "accidents":
arcpy.mapping.RemoveTableView(df, tbl)
mxd.saveACopy(r"C:\Project\Project2.mxd")
del mxd
5/10/2014