GetParameter (arcpy)
Récapitulatif
From the parameter list, select the desired parameter by its index value. The parameter is returned as an object.
Discussion
To use the parameter as a text string instead, see GetParameterAsText.
Syntaxe
GetParameter (index)
Paramètre | Explication | Type de données |
index |
Selects the specified parameter, by its index, from the parameter list. | Integer |
Type de données | Explication |
Object |
Object is returned from specified parameter. |
Exemple de code
GetParameter example
Get script tool parameter as object.
import arcpy
# Get the spatial reference from the tool dialog.
#
SR = arcpy.GetParameter(0)
# Display the Spatial Reference properties
#
arcpy.AddMessage(SR.name)
arcpy.AddMessage(SR.type)
arcpy.AddMessage(SR.factoryCode)
Thèmes connexes
9/12/2013