Show Navigation | Hide Navigation
You are here:
Geoprocessing tool reference > Coverage toolbox > Data Management toolset > Items toolset > Tools

Drop Item (Coverage)

Release 9.2
Last modified February 6, 2007
E-mail This Topic Printable Version Give Us Feedback

Print all topics in : "Tools"


Related Topics

NOTE: This tool only works with an ArcInfo license and will only be available in ArcToolbox if you have installed ArcInfo Workstation.


Deletes one or more items from an INFO table.


Usage tips

Command line syntax
An overview of the Command Line window
DropItem_arc <in_info_table> <out_info_table> <drop_item;drop_item...>

Parameter Explanation Data Type
<in_info_table>

The INFO table containing the items to be dropped.

ArcInfo Table
<out_info_table>

The INFO table to be created.

ArcInfo Table
<drop_item;drop_item...>

The item or items to be dropped from the input table.

The Add Item button, which is used only in ModelBuilder, allows you to add expected items so you can complete the dialog and continue to build your model.

ArcInfo Item; ArcInfo Item...
Data types for geoprocessing tool parameters


Command line example

dropitem_arc stands.tab stands.tab "hs-index;value-per-meter"

Scripting syntax
About getting started with writing geoprocessing scripts
DropItem_arc (in_info_table, out_info_table, drop_item)

Parameter Explanation Data Type
in_info_table (Required)

The INFO table containing the items to be dropped.

ArcInfo Table
out_info_table (Required)

The INFO table to be created.

ArcInfo Table
drop_item (Required)

The item or items to be dropped from the input table.

The Add Item button, which is used only in ModelBuilder, allows you to add expected items so you can complete the dialog and continue to build your model.

ArcInfo Item; ArcInfo Item...

Data types for geoprocessing tool parameters


Script example

# Drop an item from a table
# Import system modules
import arcgisscripting
gp = arcgisscripting.create()

# Local variables...
workspace = "c:/project93/data/"
input_table = "tra_airpor/polygon"
output_table = "tra_airpor/polygon"

try:
    # Set the current workspace (to avoid having to specify the full path to the feature classes each time)
    gp.workspace = workspace

    # Process: Drop Item...
    gp.DropItem_arc(input_table, output_table, "sites")

except:
    # If an error occurred when running the tool, print out the error message.
    print gp.GetMessages()

Please visit the Feedback page to comment or give suggestions on ArcGIS Desktop Help.
Copyright © Environmental Systems Research Institute, Inc.