a CoordinateConversionOption is a collection of properties that dictates how a Point should be converted to and from a string. More...
Since: | Esri.ArcGISRutime 100.10 |
Properties
- decimalPlaces : int
- garsConversionMode : int
- hasSpaces : bool
- latLonFormat : int
- mgrsConversionMode : int
- name : string
- outputMode : int
- precision : int
- utmConversionMode : int
Methods
- void pointFromString(Point point, SpatialReference spatialReference)
- prettyPrint(Point point)
Detailed Description
a CoordinateConversionOption is able to convert between Point <--> string using the formatting options it is currently set with.
Property Documentation
Method Documentation
Given a string called point, converts it to a Point using the current formatting options applied.
This conversion has the chance of failing, in which case null is returned.
- point string to conver to a Point.
- spatialReference SpatialReference to use in conversion.
Returns string as a Point.
Converts a Point to a string based on the properties set in this CoordinateConversionOption
- point Point to convert to string.
Returns string representation of point with the current formatting options applied.