SetProgressorLabel (arcpy)

摘要

Updates the progressor dialog box label.

语法

SetProgressorLabel (label)
参数说明数据类型
label

The label to be used on the progressor dialog box.

String

代码实例

SetProgressorLabel example

Updates the progressor dialog box label.

import arcpy
 
# Allow overwriting of output 
# 
arcpy.env.overwriteOutput = True
 
# Set current workspace 
# 
arcpy.env.workspace = "c:/data" 

# Get a list of shapefiles in folder 
# 
fcs = arcpy.ListFeatureClasses() 

# Find the total count of shapefiles in list 
# 
fcCount = len(fcs) 

# Set the progressor 
#
arcpy.SetProgressor("step", "Copying shapefiles to geodatabase...", 0,fcCount, 1) 

# Create a file gdb to contain new feature classes 
#
arcpy.CreateFileGDB(arcpy.env.workspace, "fgdb.gdb") 

# For each shapefile, copy to a file geodatabase 
# 
for shp in fcs: 
  # Trim the '.shp' extension 
  # 
  fc = shp.rstrip(".shp") 

  # Update the progressor label for current shapefile 
  # 
  arcpy.SetProgressorLabel("Loading " + shp + "...") 

  # Copy the data 
  # 
  arcpy.CopyFeatures(shp, "fgdb.gdb/" + fc) 

  # Update the progressor position 
  # 
  arcpy.SetProgressorPosition()

arcpy.ResetProgressor()

相关主题

9/15/2013