Provides direct access to the Units serialization.
Members
Name | Description | |
---|---|---|
![]() |
QueryJSONEnvelope | Queries envelope and populates existing IJSONObject |
![]() |
QueryJSONGeometry | Queries geometry and populates existing IJSONObject |
![]() |
QueryJSONGeoTransformation | Queries a geographic (datum) transformation object and populates existing IJSONObject |
![]() |
QueryJSONSpatialReference | Queries spatial reference and populates existing IJSONObject |
![]() |
QueryJSONUnit | Query a Unit Object and populates existing IJSONObject. |
![]() |
ReadEnvelope | Reads envelope object. |
![]() |
ReadGeometry | Reads geometry object. If provided geometry type is esriUnknown, tries to deduce geometry type from the JSON structure. |
![]() |
ReadGeoTransformation | Reads a geographic (datum) transformation object. |
![]() |
ReadMultipoint | Reads multipoint object. |
![]() |
ReadPoint | Reads point object. |
![]() |
ReadPolygon | Reads polygon object. |
![]() |
ReadPolyline | Reads polyline object. |
![]() |
ReadSpatialReference | Reads spatial reference object. |
![]() |
ReadUnit | Read a unit object. |
![]() |
ToEnvelope | Reads envelope from a JSON object. |
![]() |
ToGeometry | Reads geometry object from JSON object. |
![]() |
ToGeoTransformation | Reads a geographic (datum) transformation object from a JSON object. |
![]() |
ToMultipoint | Reads multipoint from a JSON object. |
![]() |
ToPoint | Reads point from a JSON object. |
![]() |
ToPolygon | Reads polygon from a JSON object. |
![]() |
ToPolyline | Reads polyline from a JSON object. |
![]() |
ToSpatialReference | Reads spatial reference from a JSON object. |
![]() |
ToUnit | Read a Unit object from a JSON object. |
![]() |
WriteGeometry | Writes geometry object. |
![]() |
WriteGeoTransformation | Writes a geographic (datum) transformation object. Pass NULL as propname to write a standalone JSON object. |
![]() |
WriteSpatialReference | Writes spatial reference object. Pass NULL as propname to write a standalone JSON object. |
![]() |
WriteUnit | Writes a Units object. Pass NULL as propname to write a standalone JSON object. |
IJSONConverterGeometry2.QueryJSONUnit Method
Query a Unit Object and populates existing IJSONObject.
Public Sub QueryJSONUnit ( _
ByVal pUnit As IUnit, _
ByVal pJSON As IJSONObject _
)
public void QueryJSONUnit (
IUnit pUnit,
IJSONObject pJSON
);
IJSONConverterGeometry2.ReadUnit Method
Read a unit object.
Public Function ReadUnit ( _
ByVal pReader As IJSONReader _
) As IUnit
public IUnit ReadUnit (
IJSONReader pReader
);
IJSONConverterGeometry2.ToUnit Method
Read a Unit object from a JSON object.
Public Function ToUnit ( _
ByVal pJSONObject As IJSONObject _
) As IUnit
public IUnit ToUnit (
IJSONObject pJSONObject
);
IJSONConverterGeometry2.WriteUnit Method
Writes a Units object. Pass NULL as propname to write a standalone JSON object.
Public Sub WriteUnit ( _
ByVal pWriter As IJSONWriter, _
ByVal propname As String, _
ByVal pUnit As IUnit _
)
public void WriteUnit (
IJSONWriter pWriter,
string propname,
IUnit pUnit
);
Inherited Interfaces
Interfaces | Description |
---|---|
IJSONConverterGeometry | Provides direct access to the geometry serialization for AMF and JSON formats. |
Classes that implement IJSONConverterGeometry2
Classes | Description |
---|---|
JSONConverterGeometry |