1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
using System.Security.Permissions;
namespace System.Web.DynamicData {
/// <summary>
/// Interface that encapsulates common formatting fields used in multiple places
/// </summary>
public interface IFieldFormattingOptions {
/// <summary>
/// Same semantic as the same property on System.Web.UI.WebControls.BoundField
/// </summary>
bool ApplyFormatInEditMode { get; }
/// <summary>
/// Same semantic as the same property on System.Web.UI.WebControls.BoundField
/// </summary>
string DataFormatString { get; }
/// <summary>
/// Same semantic as the same property on System.Web.UI.WebControls.BoundField
/// </summary>
bool ConvertEmptyStringToNull { get; }
/// <summary>
/// Same semantic as the same property on System.Web.UI.WebControls.BoundField
/// </summary>
string NullDisplayText { get; }
/// <summary>
/// Same semantic as the same property on System.Web.UI.WebControls.BoundField
/// </summary>
bool HtmlEncode { get; }
}
}
|