GetParameterAsText (arcpy)
Récapitulatif
Gets the specified parameter by its index position from the list of parameters.
Discussion
To use the parameter as an object instead, see GetParameter.
Syntaxe
GetParameterAsText (index)
| Paramètre | Explication | Type de données |
index |
The numeric position of the parameter in the parameter list. | Integer |
| Type de données | Explication |
| String |
The value of the specified parameter, returned as a string. |
Exemple de code
GetParameterAsText example
Get specified parameter as text string.
import arcpy
from arcpy import env
import os
# Set the input workspace, get the feature class name to copy
# and the output location.
#
env.workspace = arcpy.GetParameterAsText(0)
inFeatureClass = arcpy.GetParameterAsText(1)
outLocation = arcpy.GetParameterAsText(2)
outFeatureClass = outLocation + os.sep + os.path.basename(inFeatureClass)
# Copy feature class to output location
#
arcpy.Copy_management(inFeatureClass, outFeatureClass)
Thèmes connexes
9/12/2013