GetMessage (arcpy)
サマリ
Returns a geoprocessing tool message by its index position.
構文
GetMessage (index)
パラメータ | 説明 | データ タイプ |
index |
The message to retrieve. | Integer |
データ タイプ | 説明 |
String |
The geoprocessing tool message. |
コードのサンプル
GetMessage example
Returns specified geoprocessing messages.
import arcpy
fc = arcpy.GetParameterAsText(0)
arcpy.GetCount_management(fc)
# Print the first and last message returned by the last
# tool executed (GetCount)
message_count = arcpy.GetMessageCount()
print(arcpy.GetMessage(0))
print(arcpy.GetMessage(message_count - 1))
関連トピック
4/26/2014