mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-01 11:13:19 +00:00
21 lines
579 B
C#
21 lines
579 B
C#
|
|
|||
|
|
|||
|
#region " <20> Copyright 2005-07 to Marcos Meli - http://www.marcosmeli.com.ar"
|
|||
|
|
|||
|
// Errors, suggestions, contributions, send a mail to: marcos@filehelpers.com.
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
namespace FileHelpers
|
|||
|
{
|
|||
|
/// <summary>Indicates the align of the field when the <see cref="T:FileHelpers.FileHelperEngine"/> <b>writes</b> the record.</summary>
|
|||
|
public enum AlignMode
|
|||
|
{
|
|||
|
/// <summary>Aligns the field to the left.</summary>
|
|||
|
Left,
|
|||
|
/// <summary>Aligns the field to the center.</summary>
|
|||
|
Center,
|
|||
|
/// <summary>Aligns the field to the right.</summary>
|
|||
|
Right
|
|||
|
}
|
|||
|
}
|