Workarea.PutValueFile Method | |
Read (Import) a value from an external file and write it to the specified column.
Namespace:
XSharp.RDD
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax VIRTUAL METHOD PutValueFile(
nFldPos AS LONG,
fileName AS STRING
) AS LOGIC
public virtual bool PutValueFile(
int nFldPos,
string fileName
)
Request Example
View SourceParameters
- nFldPos
- Type: Long
ONE based position for which the value should be written. - fileName
- Type: String
Name of the file that needs to be read from.
Return Value
Type:
Logic
TRUE when the operation succeeded or FALSE when the operation failed.
Some RDD operations do not really return FALSE but throw an exception to indicate failure.
These exceptions are caught in the higher level code and registered in
the LastRddError property in the runtime state..
Implements
PutValueFile(Long, String)See Also