using System.Security.Permissions; namespace System.Web.DynamicData { /// /// Interface that encapsulates common formatting fields used in multiple places /// public interface IFieldFormattingOptions { /// /// Same semantic as the same property on System.Web.UI.WebControls.BoundField /// bool ApplyFormatInEditMode { get; } /// /// Same semantic as the same property on System.Web.UI.WebControls.BoundField /// string DataFormatString { get; } /// /// Same semantic as the same property on System.Web.UI.WebControls.BoundField /// bool ConvertEmptyStringToNull { get; } /// /// Same semantic as the same property on System.Web.UI.WebControls.BoundField /// string NullDisplayText { get; } /// /// Same semantic as the same property on System.Web.UI.WebControls.BoundField /// bool HtmlEncode { get; } } }