mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-01 11:13:19 +00:00
23 lines
722 B
C#
23 lines
722 B
C#
|
using System;
|
|||
|
|
|||
|
#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 behavior of multiline fields.</summary>
|
|||
|
public enum MultilineMode
|
|||
|
{
|
|||
|
/// <summary>The engine can handle multiline values for read or write.</summary>
|
|||
|
AllowForBoth = 0,
|
|||
|
/// <summary>The engine can handle multiline values only for read.</summary>
|
|||
|
AllowForRead,
|
|||
|
/// <summary>The engine can handle multiline values only for write.</summary>
|
|||
|
AllowForWrite,
|
|||
|
/// <summary>The engine don<6F>t allow multiline values for this field.</summary>
|
|||
|
NotAllow
|
|||
|
}
|
|||
|
}
|