GetMessageCount

この ArcGIS 2.8 ドキュメントはアーカイブされており、今後更新されません。 コンテンツとリンクが古い場合があります。 最新のドキュメントをご参照ください

サマリー

Returns a numeric count of all the returned messages from the last executed command.

構文

GetMessageCount ()
戻り値
データ タイプ説明
Integer

The count of returned messages from the last executed command.

コードのサンプル

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
message_count = arcpy.GetMessageCount()
print(arcpy.GetMessage(0))
print(arcpy.GetMessage(message_count - 1))

関連トピック