GetIDMessage (arcpy)
摘要
获取错误或警告 ID 消息的字符串。
讨论
GetIDMessage 允许您访问 Python 中使用的 ArcGIS 工具消息代码。工具错误和警告中记录了所找到的这些消息代码。
语法
GetIDMessage (message_ID)
参数 | 说明 | 数据类型 |
message_ID |
The geoprocessing message ID. | Integer |
数据类型 | 说明 |
String |
与消息 ID 相关联的消息字符串。 |
代码实例
GetIDMessage 示例
使用 GetIDMessage 访问消息字符串并使用 AddMessage 添加到工具消息。
import arcpy
message = arcpy.GetIDMessage(84001)
# The returned value should be:
# u'Reading data....
arcpy.AddMessage(message)
相关主题
5/10/2014