#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 triming behavior of the trailing characters.
public enum TrimMode
{
/// No triming is performed.
None,
/// The field is trimed in both sides.
Both,
/// The field is trimed in the left.
Left,
/// The field is trimed in the right.
Right
}
}