This document is archived and information here might be outdated.  Recommended version.


IGeometryFactory.CreateGeometryFromWkb Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IG > IGeometryFactory Interface > IGeometryFactory.CreateGeometryFromWkb Method
ArcGIS Developer Help

IGeometryFactory.CreateGeometryFromWkb Method

Create a point, polyline, polygon, or multipoint from the specified OGIS WKB format buffer.

[Visual Basic .NET]
Public Sub CreateGeometryFromWkb ( _
    ByRef byteCountInOut As Integer, _
    ByRef geometryInfo As Byte&, _
    ByRef outGeometry As IGeometry _
)
[C#]
public void CreateGeometryFromWkb (
    ref int byteCountInOut,
    ref Byte& geometryInfo,
    ref IGeometry outGeometry
);
[C++]
HRESULT CreateGeometryFromWkb(
  System.Int32* byteCountInOut,
  System.Byte* geometryInfo,
  IGeometry** outGeometry
);
[C++]
Parameters
byteCountInOut [in, out]

byteCountInOut is a parameter of type long* geometryInfo [in]
geometryInfo is a parameter of type unsigned char* outGeometry [out]
outGeometry is a parameter of type IGeometry**

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also

IGeometryFactory Interface