mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-29 11:17:07 +00:00
21 lines
No EOL
579 B
C#
21 lines
No EOL
579 B
C#
|
|
|
|
#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
|
|
{
|
|
/// <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
|
|
}
|
|
} |