Provides access to the properties of a Geoprocessor message.
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
When To Use
The IGPMessage interface returns a GPMessage object from an IGPMessages array, a collection of GPMessage objects. Messages are returned during the validating and executing of a geoprocessing tool.
Also refer to Building Geoprocessing Function Tools.
Members
Description | ||
---|---|---|
Description | The description of the geoprocessing message. | |
ErrorCode | The error code for the geoprocessing message. | |
IsAbort | Indicates if the message is an abort. | |
IsError | Indicates if the message is an error. | |
IsInformational | Indicates if the message is informative. | |
IsWarning | Indicates if the message is a warning. | |
Type | The geoprocessing message type. |
CoClasses that implement IGPMessage
CoClasses and Classes | Description |
---|---|
GPMessage | |
GPMessages |
Remarks
The GPMessage object is composed of a message type, error code, and description. The message type can be Error, Warning, or Informative.
See also IGPMessages