ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Help
  • Sign Out
ArcGIS Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS Desktop

A complete professional GIS

ArcGIS Enterprise

GIS in your enterprise

ArcGIS for Developers

Tools to build location-aware apps

ArcGIS Solutions

Free template maps and apps for your industry

ArcGIS Marketplace

Get apps and data for your organization

  • Documentation
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

ArcMap

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • Extensions

RemoveTableView

  • Summary
  • Discussion
  • Syntax
  • Code sample

Summary

Provides the ability to remove a table within a data frame in a map document (.mxd).

Discussion

RemoveTableView will remove a single table from a specific data frame in a map document.

Syntax

RemoveTableView (data_frame, remove_table)
ParameterExplanationData Type
data_frame

A reference to a DataFrame object that contains the layer to be removed.

DataFrame
remove_table

A reference to a Layer object representing the layer to be removed.

TableView

Code sample

RemoveTableView example

The following script will remove all tables with the name Accidents from a map document.

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

ArcGIS Desktop

  • Home
  • Documentation
  • Support

ArcGIS Platform

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

About Esri

  • About Us
  • Careers
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Tell us what you think.
Copyright © 2019 Esri. | Privacy | Legal