GetMessages

Zusammenfassung

Returns the geoprocessing messages from a tool by specified severity level..

Syntax

GetMessages ({severity})
ParameterErläuterungDatentyp
severity

The severity level of messages to return.

  • 0messages returned.
  • 1warning messages returned.
  • 2error messages returned.

Not specifying a severity will return all types of messages.

(Der Standardwert ist 0)

Integer
Rückgabewert
DatentypErläuterung
String

The geoprocessing tool messages, separated by a newline ('\n').

Codebeispiel

GetMessages example

Returns the geoprocessing messages.

import arcpy

fc = arcpy.GetParameterAsText(0)
featurecount = arcpy.GetCount_management(fc)

# Print all of the geoprocessing messages returned by the 
#  last tool (GetCount)
#
print arcpy.GetMessages()

Verwandte Themen


7/10/2012