Creates a DBFFieldDesc struct by reading from raw byte data. The contents of the raw byte data are as they would appear in the
header of a DBF file
Namespace:
EGIS.ShapeFileLib
Assembly:
EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)
Syntax
| Visual Basic (Declaration) |
|---|
Public Sub New ( _
data As Byte(), _
dataOffset As Integer, _
recordOffset As Integer _
) |
| C# |
|---|
public DbfFieldDesc(
byte[] data,
int dataOffset,
int recordOffset
) |
Parameters
- data
- Type: array<
System..::.Byte
>[]()[]
a byte array containing the raw header data
- dataOffset
- Type: System..::.Int32
the zero based offset in the raw data from where to start reading
- recordOffset
- Type: System..::.Int32
the zero based offset of the Field within a record
See Also