com.esri.arcgis.editor
Interface esriEditState

All Superinterfaces:
Serializable

public interface esriEditState
extends Serializable

Indicates whether editing is happening or not.

Remarks

This enumeration, used with IEditor::EditState, communicates the current state of the editor.

esriStateNotEditing An edit session has not been started on any map.
esriStateEditing An edit session has been started on the selected map.
esriStateEditingUnfocused An edit session has been started but not on the selected map.

A good example of using this enumeration is setting the Enabled property on ICommand.


Product Availability

Available with ArcGIS Desktop.

Supported Platforms

Windows


Field Summary
static int esriStateEditing
          Editing.
static int esriStateEditingUnfocused
          Editing, but the map is out of focus.
static int esriStateNotEditing
          Not editing.
 

Field Detail

esriStateNotEditing

static final int esriStateNotEditing
Not editing.

See Also:
Constant Field Values

esriStateEditing

static final int esriStateEditing
Editing.

See Also:
Constant Field Values

esriStateEditingUnfocused

static final int esriStateEditingUnfocused
Editing, but the map is out of focus.

See Also:
Constant Field Values