com.esri.arcgis.geodatabase
Interface IRowEdit

All Superinterfaces:
Serializable
All Known Subinterfaces:
IFeatureEdit, IFeatureEdit2
All Known Implementing Classes:
AnnotationFeature, AttributedRelationship, ComplexEdgeFeature, ComplexJunctionFeature, CoverageAnnotationFeature, DimensionFeature, esri_Object, Feature, GeocodedFeature, GeocodingIndexObject, IFeatureEdit2Proxy, IFeatureEditProxy, IRowEditProxy, NALocationFeature, NALocationObject, NALocationRangesFeature, NALocationRangesObject, NATraversalResultElement, RasterCatalogItem, Row, SchematicDiagram, SchematicInMemoryFeatureLink, SchematicInMemoryFeatureNode, SchematicInMemoryFeatureNodeOnLink, SchematicInMemoryFeatureSubLink, SchematicLink, SchematicNode, SchematicNodeOnLink, SchematicSubLink, SimpleEdgeFeature, SimpleJunctionFeature, TopologyErrorFeature

public interface IRowEdit
extends Serializable

Provides access to members implemented to customize object editing.

Remarks

The IRowEdit interface contains additional methods to edit row objects.

The DeleteSet method can be used to delete a set of rows from a Table. The application program is responsible for collecting the set of row objects to be deleted into a Set object. A single member of the set is then arbitrarily chosen and the DeleteSet method is invoked on that row, passing the entire set (including the row itself) as argument.

It is more efficient to call this method once rather than calling the Delete method multiple times when the deleted row objects participate in relationships that need to be automatically deleted.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 void deleteSet(ISet rows)
          Deletes the set of rows.
 

Method Detail

deleteSet

void deleteSet(ISet rows)
               throws IOException,
                      AutomationException
Deletes the set of rows.

Remarks

All edits to features that participate in a Topology or Geometric Network must be performed within an edit session and bracketed within an edit operation.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
rows - A reference to a com.esri.arcgis.system.ISet (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.