ArcObjects Library Reference (GeoDatabase)  

IFeatureProgress Interface

Provides access to members used to handle events from converting featureclass/table.

Product Availability

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

Members

Description
Event Step Step the progressor interval.

CoClasses that implement IFeatureProgress

CoClasses and Classes Description
CheckIn (esriGeoDatabaseDistributed) Checks in changes from a check-out geodatabase or a delta database to a master geodatabase.
CheckInDataSynchronizer (esriGeoDatabaseDistributed) Synchronizes changes from a check-out with the master geodatabase.
CheckOut (esriGeoDatabaseDistributed) Checks out data from a master geodatabase to a check-out geodatabase.
DataChangesImporter (esriGeoDatabaseDistributed) Imports edits or checks in from a delta file to a geodatabase.
DataExtraction (esriGeoDatabaseDistributed) Extracts data from one geodatabase to another geodatabase.
DEProgressor (esriGeoDatabaseDistributedUI) Progressor that implements disconnected editing event interfaces.
ExportOperation (esriGeoDatabaseUI) ExportOperation class used to export a table or feature class.
FeatureDataConverter Converts a featuredataset to a Personal Geodatabase/Geodatabase featuredataset.
FeatureProgressListener (esriSystemUtility) Helper coclass to provide IFeatureProgress support to the C++ API.
GdbExporter (esriGeoDatabaseDistributed) Esri Geodatabase Exporter object.
GdbImporter (esriGeoDatabaseDistributed) Esri Geodatabase Importer object.
GeoDBDataTransfer Transfers data to/from GeoDatabases.
GFSReplicationAgent (esriCarto) A class used to perform replica operations.
ObjectLoader (esriEditorExt) Loads data into an existing object class.
ReplicationAgent (esriGeoDatabaseDistributed) A class used to perform replica operations.
SimpleDataConverter Convert a set of shape files into Access or SDE.

Remarks

The IFeatureProgress interface handles events that are fired by a data conversion or object-loading process.

The various properties, other than IsCancelled, are automatically initialized when data conversion starts. However, it is important to note that you can get these values, but you cannot set them.

Property/Method Description
FeatureClassName Input feature class name.
MinFeatures Minimum number of features/rows in the input object class.
MaxFeatures Maximum number of features/rows in the input object class.
Position Current feature/row that is being converted.
StepValue The number of converted features that are needed to cause the firing of the Step method.
Step

The Step method is fired automatically for every x number of features, where x is the value of StepValue. You can use this event to keep a count of how many features have been converted. The IsCancelled, property is fetched by the converter after every call to Step.

IsCancelled Indicates whether the cancel button is pressed.  The data conversion will be
cancelled if the user presses the cancel button.
[C#]

See the KB article, "HowTo: Use IFeatureProgress and IReplicaProgress properties in .NET" for more information about using this interface in .NET.

[Visual Basic .NET]

See the KB article, "HowTo: Use IFeatureProgress and IReplicaProgress properties in .NET" for more information about using this interface in .NET.