#region " © Copyright 2005-07 to Marcos Meli - http://www.marcosmeli.com.ar"
// Errors, suggestions, contributions, send a mail to: marcos@filehelpers.com.
#endregion
namespace FileHelpers
{
/// Indicates the behavior when variable length records are found in a []. (Note: nothing in common with [FieldOptional])
public enum FixedMode
{
/// The records must have the length equals to the sum of each field length.
ExactLength = 0,
/// The records can contain less chars in the last field.
AllowMoreChars,
/// The records can contain more chars in the last field.
AllowLessChars,
/// The records can contain more or less chars in the last field.
AllowVariableLength
}
}