Provides access to TerrainBlockCursor object.
Members
| Name | Description | |
|---|---|---|
![]() |
BlockCount | The number of blocks in the cursor. |
![]() |
Next | Returns next block in the form of rows and columns. |
![]() |
NextAsTin | Returns next block as a reference to a TIN object. |
![]() |
Reset | Resets the cursor to point to the first block. |
ITerrainBlockCursor.BlockCount Property
The number of blocks in the cursor.
Public ReadOnly Property BlockCount As Integer
public int BlockCount {get;}
ITerrainBlockCursor.Next Method
Returns next block in the form of rows and columns.
Public Sub Next ( _
    ByRef pRowBegin As Integer, _
    ByRef pRowEnd As Integer, _
    ByRef pColBegin As Integer, _
    ByRef pColEnd As Integer, _
    ByRef pbIsEnd As Boolean _
)
public void Next (
    ref int pRowBegin,
    ref int pRowEnd,
    ref int pColBegin,
    ref int pColEnd,
    ref bool pbIsEnd
);
ITerrainBlockCursor.NextAsTin Method
Returns next block as a reference to a TIN object.
Public Sub NextAsTin ( _
    ByRef ppTin As ITin, _
    ByRef ppExtent As IEnvelope _
)
public void NextAsTin (
    ref ITin ppTin,
    ref IEnvelope ppExtent
);
ITerrainBlockCursor.Reset Method
Resets the cursor to point to the first block.
Public Sub Reset ( _
)
public void Reset (
);
Classes that implement ITerrainBlockCursor
| Classes | Description |
|---|---|
| TerrainBlockCursor | Esri TerrainBlockCursor object. |

