using System;
#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 of multiline fields.
public enum MultilineMode
{
/// The engine can handle multiline values for read or write.
AllowForBoth = 0,
/// The engine can handle multiline values only for read.
AllowForRead,
/// The engine can handle multiline values only for write.
AllowForWrite,
/// The engine donīt allow multiline values for this field.
NotAllow
}
}