ReadLineData [String]


Function

 

Read one line of string data from the file.

 

Format

 

Ret = dncReadFile1.ReadLineData(Data)

 

Parameters

 

Data [ C#: string ]  [ VB.NET: String ]  

Specify the data for one line to read from the file as a character string in a one-dimensional array.

The maximum number of columns that can be read is 100.

 

Return value

 

Ret [ C#: int ] [ VB.NET: Integer ]

 

Value

Description

0

Normality completion

520001

Failed to input / output the file. Check the file path and file name.

Other errors (see: Error code details)

 

Remarks

 

Read one line of string data from the file.

 

Example

 

Read one line of string data from the file.

C#

int Ret
string[] Data = new string[256];

Ret = dncReadFile1.ReadLineData(Data);

 

VB.NET

Dim Ret As Integer
Dim Data(256) As String

Ret = dncReadFile1.ReadLineData(Data)