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