Skip to content

ITerrainBlockCursor Interface

Provides access to TerrainBlockCursor object.

Members

Name Description
Read-only property BlockCount The number of blocks in the cursor.
Method Next Returns next block in the form of rows and columns.
Method NextAsTin Returns next block as a reference to a TIN object.
Method 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.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.