Syntax
Visual Basic (Declaration) | |
---|
<SoapDocumentMethodAttribute(RequestNamespace="http://www.esri.com/schemas/ArcGIS/10.1",
ResponseNamespace="http://www.esri.com/schemas/ArcGIS/10.1",
Use=SoapBindingUse.Literal,
ParameterStyle=SoapParameterStyle.Wrapped)>
Public Overloads Function GetAreasAndLengths( _
ByVal SpatialReference As ESRI.ArcGIS.ADF.ArcGISServer.SpatialReference, _
ByVal InPolygonArray() As ESRI.ArcGIS.ADF.ArcGISServer.Polygon, _
ByRef Lengths As Double() _
) As Double() |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As GeometryServerDcomProxy
Dim SpatialReference As ESRI.ArcGIS.ADF.ArcGISServer.SpatialReference
Dim InPolygonArray() As ESRI.ArcGIS.ADF.ArcGISServer.Polygon
Dim Lengths As Double()
Dim value() As Double
value = instance.GetAreasAndLengths(SpatialReference, InPolygonArray, Lengths) |
C# | |
---|
[SoapDocumentMethodAttribute(RequestNamespace="http://www.esri.com/schemas/ArcGIS/10.1",
ResponseNamespace="http://www.esri.com/schemas/ArcGIS/10.1",
Use=SoapBindingUse.Literal,
ParameterStyle=SoapParameterStyle.Wrapped)]
public double[] GetAreasAndLengths(
ESRI.ArcGIS.ADF.ArcGISServer.SpatialReference SpatialReference,
ESRI.ArcGIS.ADF.ArcGISServer.Polygon[] InPolygonArray,
out double[] Lengths
) |
Parameters
- SpatialReference
- InPolygonArray
- Lengths
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