File: System\Web\UI\Design\WebControls\ListViewGridLayout.cs
Project: System.Web.Extensions.Design.dll (System.Web.Extensions.Design)
#region Assembly System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Web.Extensions.Design.dll
#endregion
 
using System.Collections.ObjectModel;
using System.ComponentModel.Design;
using System.Runtime;
 
namespace System.Web.UI.Design.WebControls
{
    internal class ListViewGridLayout : ListViewAutoLayout
    {
        [TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
        public ListViewGridLayout(IDesignerHost designerHost, IDataSourceFieldSchema[] fieldSchema);
 
        public override string ID { get; }
        public override string LayoutName { get; }
        public override Collection<ListViewAutoStyle> Styles { get; }
 
        protected override ITemplate CreateAlternatingItemTemplate(ListViewAutoStyle style, bool enableDeleting, bool enableEditing, bool hasButtons, bool isDynamic);
        protected override ITemplate CreateEditItemTemplate(ListViewAutoStyle style, bool isDynamic);
        protected override ITemplate CreateEmptyDataTemplate(ListViewAutoStyle style);
        protected override ITemplate CreateInsertItemTemplate(ListViewAutoStyle style, bool isDynamic);
        protected override ITemplate CreateItemTemplate(ListViewAutoStyle style, bool enableDeleting, bool enableEditing, bool hasButtons, bool isDynamic);
        protected override ITemplate CreateLayoutTemplate(ListViewAutoStyle style, DesignerPagerStyle pagerStyle, string itemPlaceholderID, string groupPlaceholderID, bool hasButtons);
        protected override ITemplate CreateSelectedItemTemplate(ListViewAutoStyle style, bool enableDeleting, bool enableEditing, bool hasButtons, bool isDynamic);
    }
}