ジオデータベース テーブル プロパティ
サマリ
Describe 関数はジオデータベース テーブルに対して次のプロパティを返します。テーブル プロパティおよびデータセット プロパティもサポートされます。
ジオデータベース テーブルが返す dataType は DbaseTable です。
プロパティ
| プロパティ | 説明 | データ タイプ |
| aliasName (読み取り専用) |
The alias name for the table. | String |
| defaultSubtypeCode (読み取り専用) |
The default subtype code. | String |
| extensionProperties (読み取り専用) | The properties for the class extension. | Object |
| globalIDFieldName (読み取り専用) |
The name of the GlobalID field. | String |
| hasGlobalID (読み取り専用) |
Indicates whether the table has a GlobalID field. | Boolean |
| modelName (読み取り専用) |
The model name for the table. | String |
| rasterFieldName (読み取り専用) |
The name of the raster field. | String |
| relationshipClassNames (読み取り専用) |
The names of the Relationship Classes that this table participates in. | String |
| subtypeFieldName (読み取り専用) |
The name of the subtype field. | String |
コードのサンプル
GDB Table properties example (stand-alone script)
The following stand-alone script displays some properties of a GDB table.
import arcpy
# Create a Describe object from the GDB table.
#
desc = arcpy.Describe("C:/data/chesapeake.gdb/munich")
# Print GDB Table properties
#
print "%-22s %s" % ("AliasName:", desc.aliasName)
print "%-22s %s" % ("DefaultSubtypeCode:", desc.defaultSubtypeCode)
print "%-22s %s" % ("GlobalIDFieldName:", desc.globalIDFieldName)
print "%-22s %s" % ("ModelName:", desc.modelName)
print "%-22s %s" % ("RasterFieldName:", desc.rasterFieldName)
print "%-22s %s" % ("RelationshipClassNames:", desc.relationshipClassNames)
7/10/2012