RddFieldInfo Constructor (String, String, Long, Long, Long) | |
Construct a RddFieldInfo object.
Namespace:
XSharp.RDD.Support
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax CONSTRUCTOR(
sName AS STRING,
sType AS STRING,
nLength AS LONG,
nDecimals AS LONG,
nOffSet AS LONG := -1
)
public RddFieldInfo(
string sName,
string sType,
int nLength,
int nDecimals,
int nOffSet = -1
)
Request Example
View SourceParameters
- sName
- Type: String
Name - sType
- Type: String
Type, may also contain flags in the form of a colon follwed by N,0,B,+,Z,E,U - nLength
- Type: Long
Length 'DBF style', so length in Buffer - nDecimals
- Type: Long
Number of decimals. - nOffSet (Optional)
- Type: Long
Offset in record buffer (optional).
See Also