Résumé
Updates the alias name for a table or feature class.
Syntaxe
AlterAliasName (table, alias)
Paramètre | Explication | Type de données |
table | Input table or feature class. | String |
alias | The new alias name. | String |
Exemple de code
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')
Vous avez un commentaire à formuler concernant cette rubrique ?