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


ITerrainBlobReader.SetBlob Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IT > ITerrainBlobReader Interface > ITerrainBlobReader.SetBlob Method
ArcGIS Developer Help

ITerrainBlobReader.SetBlob Method

Assigns a blob to the reader.

[Visual Basic .NET]
Public Sub SetBlob ( _
    ByVal pBlob As IMemoryBlobStream _
)
[C#]
public void SetBlob (
    IMemoryBlobStream pBlob
);
[C++]
HRESULT SetBlob(
  IMemoryBlobStream* pBlob
);
[C++]
Parameters
pBlob [in]

pBlob is a parameter of type IMemoryBlobStream*

Product Availability

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

Description

SetBlob is used to assign a reference for a compatible BLOB to the TerrainBlobReader for interpretation.

Notes

- The BLOB referenced must be a compatible type. These include BLOBs made by the TerrainBlobWriter and the TerrainLasDataImporter.
- If you're unsure of compatibility you can test it using ITerrainBlobReader.IsKnownBlob.

See Also

ITerrainBlobReader Interface