Provides access to members that construct an attribute blob.
Members
| Name | Description | |
|---|---|---|
![]() |
AddValue | Adds an attribute value to the blob. |
![]() |
BeginAddingValue | Initialize a new blob with the specified data type. |
![]() |
EndAddingValue | Completes writing the blob and returns a reference to the blob object. |
![]() |
GetItemCount | Returns the number of attribute values contained in the blob. |
ITerrainBlobWriter.AddValue Method
Adds an attribute value to the blob.
Public Sub AddValue ( _
ByVal Value As Object _
)
public void AddValue (
object Value
);
ITerrainBlobWriter.BeginAddingValue Method
Initialize a new blob with the specified data type.
Public Sub BeginAddingValue ( _
ByVal Type As esriTerrainBlobDataType _
)
public void BeginAddingValue (
esriTerrainBlobDataType Type
);
ITerrainBlobWriter.EndAddingValue Method
Completes writing the blob and returns a reference to the blob object.
Public Function EndAddingValue ( _
) As IMemoryBlobStream
public IMemoryBlobStream EndAddingValue (
);
ITerrainBlobWriter.GetItemCount Method
Returns the number of attribute values contained in the blob.
Public Function GetItemCount ( _
) As Integer
public int GetItemCount (
);
Classes that implement ITerrainBlobWriter
| Classes | Description |
|---|---|
| TerrainBlobWriter | Esri Terrain blob writer. |
