Converts an ArcGIS (ArcObjects) point collection to an array of Web ADF points.
Syntax
Visual Basic (Declaration) | |
---|
Public Shared Function FromIPointCollection( _
ByVal points As ESRI.ArcGIS.Geometry.IPointCollection _
) As ESRI.ArcGIS.ADF.Web.Geometry.Point() |
Visual Basic (Usage) | Copy Code |
---|
Dim points As ESRI.ArcGIS.Geometry.IPointCollection
Dim value() As ESRI.ArcGIS.ADF.Web.Geometry.Point
value = Converter.FromIPointCollection(points) |
C# | |
---|
public static ESRI.ArcGIS.ADF.Web.Geometry.Point[] FromIPointCollection(
ESRI.ArcGIS.Geometry.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.
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also