#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 align of the field when the writes the record. public enum AlignMode { /// Aligns the field to the left. Left, /// Aligns the field to the center. Center, /// Aligns the field to the right. Right } }