 | CDBREADiGetNextBlock Method |
Get the next block of data.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic int iGetNextBlock(
ref int line,
ref int block,
ref int n_blocks
)
public int iGetNextBlock(
ref int line,
ref int block,
ref int n_blocks
)
Public Function iGetNextBlock (
ByRef line As Integer,
ByRef block As Integer,
ByRef n_blocks As Integer
) As Integer
Public Function iGetNextBlock (
ByRef line As Integer,
ByRef block As Integer,
ByRef n_blocks As Integer
) As Integer
public:
int iGetNextBlock(
int% line,
int% block,
int% n_blocks
)
public:
int iGetNextBlock(
int% line,
int% block,
int% n_blocks
)
member iGetNextBlock :
line : int byref *
block : int byref *
n_blocks : int byref -> int
member iGetNextBlock :
line : int byref *
block : int byref *
n_blocks : int byref -> int
Parameters
- line
- Type: SystemInt32
(returned) The index into the input selected line list of the line whose data is contained in the current block - block
- Type: SystemInt32
(returned) The block index (0 to NBlocks-1) for the current line of data. - n_blocks
- Type: SystemInt32
(returned) The number of blocks that the current line is split into.
Return Value
Type:
Int32Returns the current block index, or -1 if at end of file (no new data returned).
Remarks
The next block of data is read and copied into the channel VV and/or VA objects, accessed using
the GetVV_DBREAD and GetVA_DBREAD functions.
See Also