AddTableView (arcpy.mapping)

摘要

用于将表添加到地图文档 (.mxd) 的数据框中。

讨论

AddTableView 用于将表添加到地图文档中。首先必须引用 TableView 对象。可以通过使用 ListTableViews 函数引用另一个地图文档中的表,也可以通过使用 TableView 函数引用工作空间中的表。

语法

AddTableView (data_frame, add_table)
参数说明数据类型
data_frame

A reference to a DataFrame object within a map document.

DataFrame
add_table

A reference to a TableView object representing the table to be added. This reference can point to a table within an existing map document or it can reference a table in a workspace via the TableView function.

TableView

代码实例

AddTableView 示例

以下脚本将分别来自三个不同工作空间中的三个表添加到地图文档中的单个数据框中。这几个不同的工作空间是 shapefile/dBASE、文件地理数据库和 SDE。

import arcpy
mxd = arcpy.mapping.MapDocument(r"C:\Project\Project.mxd")
df = arcpy.mapping.ListDataFrames(mxd, "New Data Frame")[0]
dbf_Table = arcpy.mapping.TableView(r"C:\Project\Data\customers.dbf")
fGDB_Table = arcpy.mapping.TableView(r"C:\Project\Data\fGBD.gdb\customers")
SDE_Table = arcpy.mapping.TableView(r"C:\PathToSDEConnectionfile.sde\customers")
arcpy.mapping.AddTableView(df, dbf_Table)
arcpy.mapping.AddTableView(df, fGDB_Table)
arcpy.mapping.AddTableView(df, SDE_Table)
mxd.saveACopy(r"C:\Project\Project2.mxd")
del mxd
5/10/2014