public static Multipoint FromXml( string xmlString )
Public Shared Function FromXml( _ ByVal xmlString As String _ ) As Multipoint
Parameters
- xmlString
- XML string representation of the Multipoint.
Return Value
A Multipoint.
public static Multipoint FromXml( string xmlString )
Public Shared Function FromXml( _ ByVal xmlString As String _ ) As Multipoint
Exception | Description |
---|---|
System.ArgumentNullException | The xmlString is empty or null. |
ArcGIS.Core.Geometry.Exceptions.GeometryObjectException | The XML string is invalid or does not represent a Multipoint string. |
MapPoint minPoint = MapPointBuilderEx.CreateMapPoint(1, 1, 1, 1, 3); MapPoint maxPoint = MapPointBuilderEx.CreateMapPoint(5, 5, 5); // // MapPoint // string xml = minPoint.ToXml(); MapPoint minPointImport = MapPointBuilderEx.FromXml(xml); // minPointImport = minPoint // // Envelope // Envelope envelopeWithID = EnvelopeBuilderEx.CreateEnvelope(minPoint, maxPoint); // Envelopes don't have IDs // envelopeWithID.HasID = false // envelopeWithID.HasM = true // envelopeWithID.HasZ = true xml = envelopeWithID.ToXml(); Envelope envelopeImport = EnvelopeBuilderEx.FromXml(xml); // // Multipoint // List<MapPoint> list = new List<MapPoint>(); list.Add(minPoint); list.Add(maxPoint); Multipoint multiPoint = MultipointBuilderEx.CreateMultipoint(list); xml = multiPoint.ToXml(); Multipoint multipointImport = MultipointBuilderEx.FromXml(xml); // multipointImport.PointCount == 2 // multipointImport.HasID = true // multipointImport.HasM = true // multipointImport.HasZ= true
Target Platforms: Windows 11, Windows 10