com.esri.arcgis.editor
Interface IEditTaskSearch

All Superinterfaces:
Serializable
All Known Implementing Classes:
Editor, IEditTaskSearchProxy

public interface IEditTaskSearch
extends Serializable

Provides access to members that find edit tasks by name.

Remarks

Use IEditTaskSearch::TaskByUniqueName to quickly find an edit task. This is helpful because you don't need to loop over all the edit tasks and check their names to see if you are getting the task you want, and it is robust as it allows you to uniquely identify a task regardless of its name.

You can find edit tasks by this method only if the task implements IEditTaskName.

Product Availability

Available with ArcGIS Desktop.

See Also:
IEditTask

Method Summary
 IEditTask getTaskByUniqueName(String uniqueName)
          An edit task by unique name.
 

Method Detail

getTaskByUniqueName

IEditTask getTaskByUniqueName(String uniqueName)
                              throws IOException,
                                     AutomationException
An edit task by unique name.

Product Availability

Available with ArcGIS Desktop.

Parameters:
uniqueName - The uniqueName (in)
Returns:
A reference to a com.esri.arcgis.editor.IEditTask
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.