Usage method |
|
|
Release 9.3
Last modified January 19, 2010 |
Print all topics in : "Properties and Methods" |
Note:
This topic was updated for 9.3.1.
Returns the syntax for the specified tool. Displays the same as the IntelliSense at the command line.
| Part | Description |
| object | The instantiated geoprocessing object |
| method | The tool for which the syntax will be displayed |
import arcgisscripting
gp = arcgisscripting.create(9.3)
#Returns:
# Usage: clip_analysis <in_features> <clip_features> <out_feature_class> {cluster_tolerance}
#
print gp.usage("clip_analysis")