Converts an ArcGIS (ArcObjects) point collection to 
            an array of Web ADF points.
            
            
            
 Syntax
Syntax
| Visual Basic (Declaration) |  | 
|---|
| Public Shared Function FromIPointCollection( _
   ByVal points As IPointCollection _
) As Point() | 
| Visual Basic (Usage) |  Copy Code | 
|---|
| Dim points As IPointCollection
Dim value() As Point
 
value = Converter.FromIPointCollection(points)
 | 
| C# |  | 
|---|
| public static Point[] FromIPointCollection( 
   IPointCollection points
) | 
Parameters
- points
- 
                The ArcGIS (ArcObjects) point collection
                (IPointCollection) to
                convert.
            
Return Value
                An array of Web ADF 
Point objects with
                the equivalent properties.
            
 See Also
See Also