Provides access to members that provide information about an attribute blob.
Members
| Name | Description | |
|---|---|---|
![]() |
GetDataType | Returns the data type of the blob. |
![]() |
GetItemCount | Returns the number of attribute values contained in the blob. |
![]() |
GetValue | Returns the value of the attribute specified by the index. |
![]() |
IsKnownBlob | Indicates if Terrain can recognize the blob. |
![]() |
SetBlob | Assigns a blob to the reader. |
![]() |
SetEmpty | Uninitialize the object. |
ITerrainBlobReader.GetDataType Method
Returns the data type of the blob.
Public Function GetDataType ( _
) As esriTerrainBlobDataType
public esriTerrainBlobDataType GetDataType (
);
ITerrainBlobReader.GetItemCount Method
Returns the number of attribute values contained in the blob.
Public Function GetItemCount ( _
) As Integer
public int GetItemCount (
);
ITerrainBlobReader.GetValue Method
Returns the value of the attribute specified by the index.
Public Function GetValue ( _
ByVal Index As Integer _
) As Object
public object GetValue (
int Index
);
ITerrainBlobReader.IsKnownBlob Method
Indicates if Terrain can recognize the blob.
Public Function IsKnownBlob ( _
ByVal pBlob As IMemoryBlobStream _
) As Boolean
public bool IsKnownBlob (
IMemoryBlobStream pBlob
);
ITerrainBlobReader.SetBlob Method
Assigns a blob to the reader.
Public Sub SetBlob ( _
ByVal pBlob As IMemoryBlobStream _
)
public void SetBlob (
IMemoryBlobStream pBlob
);
ITerrainBlobReader.SetEmpty Method
Uninitialize the object.
Public Sub SetEmpty ( _
)
public void SetEmpty (
);
Classes that implement ITerrainBlobReader
| Classes | Description |
|---|---|
| TerrainBlobReader | Esri Terrain blob reader. |
