GetIDMessage
Resumen
The GetIDMessage function gets the string of the error or warning ID message.
Debate
GetIDMessage allows you to access geoprocessing tool message codes for use in Python.
Sintaxis
GetIDMessage(message_ID)
| El parámetro | Explicación | Tipo de datos |
|---|---|---|
|
message_ID |
The geoprocessing message ID. |
Integer |
Valor de retorno
| Tipo de datos | Explicación |
|---|---|
|
String |
The message string associated with the message ID. |
Muestra de código
GetIDMessage example
Access a message string using GetIDMessage and add to the tool messages using AddMessage.
import arcpy
message = arcpy.GetIDMessage(84001)
# The returned value should be: u'Reading Data....'
arcpy.AddMessage(message)