AlterAliasName

この ArcGIS 2.7 ドキュメントはアーカイブされており、今後更新されません。 コンテンツとリンクが古い場合があります。 最新のドキュメントをご参照ください

概要

Updates the alias name for a table or feature class.

構文

AlterAliasName (table, alias)
パラメーター説明データ タイプ
table

Input table or feature class.

String
alias

The new alias name.

String

コードのサンプル

AlterAliasName example

Updates the alias name for a newly created table.

import arcpy

arcpy.CreateTable_management('c:/city/Boston.gdb', 'SnowReport')
arcpy.AlterAliasName('c:/city/Boston.gdb/SnowReport', 'Snow Report')

このトピックの内容