Share via


AsciiIo.inRecordLength Method

Definition

Overloads

inRecordLength(Int32)
inRecordLength()

Sets or retrieves the record length for an input file.

inRecordLength(Int32)

public:
 override int inRecordLength(int _value);
public override int inRecordLength (int _value);
override this.inRecordLength : int -> int
Public Overrides Function inRecordLength (_value As Integer) As Integer

Parameters

_value
Int32

The value to assign as the record length for the input file.

Returns

Applies to

inRecordLength()

Sets or retrieves the record length for an input file.

public:
 override int inRecordLength();
public override int inRecordLength ();
override this.inRecordLength : unit -> int
Public Overrides Function inRecordLength () As Integer

Returns

The record length for the input file.

Remarks

For files that have a fixed-length format, use the inRecordLength property to guarantee that no more than the specified number of characters is read for each record. If the record format is overruled by a specified inRecordDelimiter property value (in other words, if the inRecordDelimiter value is met before the fixed length is read), the record is accepted, and no more data is read. To make sure that a fixed number of characters is read, set the inRecordDelimiter property value to an empty string. When no inRecordDelimiter property value is found, the inRecordDelimiter property value is the maximum limit of characters to read. Set the inRecordDelimiter property value to 0 (zero) to disable the check of the record length.

Applies to