GetMessageCount (arcpy)
Zusammenfassung
Returns a numeric count of all the returned messages from the last executed command.
Syntax
GetMessageCount ()
Datentyp | Erläuterung |
Integer |
The count of returned messages from the last executed command. |
Codebeispiel
GetMessageCount example
Returns the first and last geoprocessing messages.
import arcpy
fc = arcpy.GetParameterAsText(0)
arcpy.GetCount_management(fc)
# Print the first and last geoprocessing tool messages
#
messageCount = arcpy.GetMessageCount()
print arcpy.GetMessage(0)
print arcpy.GetMessage(messageCount - 1)
Verwandte Themen
9/11/2013