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


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

ITerrainBlobWriter.BeginAddingValue Method

Initialize a new blob with the specified data type.

[Visual Basic .NET]
Public Sub BeginAddingValue ( _
    ByVal Type As esriTerrainBlobDataType _
)
[C#]
public void BeginAddingValue (
    esriTerrainBlobDataType Type
);
[C++]
HRESULT BeginAddingValue(
  esriTerrainBlobDataType Type
);
[C++]
Parameters
Type [in]

Type is a parameter of type esriTerrainBlobDataType

Product Availability

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

Description

BeginAddingValue is used to initialize a new BLOB to one of the supported numeric types (see esriTerrainBlobDataType). All values in an individual TerrainBlob are the same type; homogeneous.

After calling BeginAddingValue you use ITerrainBlobWriter.AddValue to populate the BLOB.

See Also

ITerrainBlobWriter Interface