mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-29 11:17:07 +00:00
23 lines
No EOL
591 B
C#
23 lines
No EOL
591 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 triming behavior of the trailing characters.</summary>
|
|
public enum TrimMode
|
|
{
|
|
/// <summary>No triming is performed.</summary>
|
|
None,
|
|
/// <summary>The field is trimed in both sides.</summary>
|
|
Both,
|
|
/// <summary>The field is trimed in the left.</summary>
|
|
Left,
|
|
/// <summary>The field is trimed in the right.</summary>
|
|
Right
|
|
}
|
|
} |