Provides access to the Image Server Edit Results Interface.
Members
| Name | Description | |
|---|---|---|
|  | Add | Adds a edit result. | 
|  | Count | The edit result count. | 
|  | Element | The edit result at the specified position. | 
|  | Insert | Adds a edit result at the specified position. | 
|  | Remove | Removes the edit result at the specified position. | 
|  | RemoveAll | Removes all edit results. | 
IImageServerEditResults.Add Method
Adds a edit result.
Public Sub Add ( _
    ByVal pEditResult As IImageServerEditResult _
)
public void Add (
    IImageServerEditResult pEditResult
);
IImageServerEditResults.Count Property
The edit result count.
Public ReadOnly Property Count As Integer
public int Count {get;}
IImageServerEditResults.Element Property
The edit result at the specified position.
Public Function get_Element ( _
    ByVal Index As Integer _
) As IImageServerEditResult
public IImageServerEditResult get_Element (
    int Index
);
IImageServerEditResults.Insert Method
Adds a edit result at the specified position.
Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal pEditesult As IImageServerEditResult _
)
public void Insert (
    int Index,
    IImageServerEditResult pEditesult
);
IImageServerEditResults.Remove Method
Removes the edit result at the specified position.
Public Sub Remove ( _
    ByVal Index As Integer _
)
public void Remove (
    int Index
);
IImageServerEditResults.RemoveAll Method
Removes all edit results.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IImageServerEditResults
| Classes | Description | 
|---|---|
| ImageServerEditResults | A collection of Image Server Edit Result objects. |