38 references to RepeatLayout
System.Web (38)
UI\WebControls\CheckBoxList.cs (7)
173DefaultValue(RepeatLayout.Table), 176public virtual RepeatLayout RepeatLayout { 179return((o == null) ? RepeatLayout.Table : (RepeatLayout)o); 264if (RepeatLayout == RepeatLayout.Table && RenderWhenDataEmpty) { 299repeatInfo.RepeatLayout = RepeatLayout.Flow; 305if (repeatInfo.RepeatLayout == RepeatLayout.Flow) {
UI\WebControls\DataList.cs (10)
463DefaultValue(RepeatLayout.Table), 466public virtual RepeatLayout RepeatLayout { 470return(RepeatLayout)o; 471return RepeatLayout.Table; 474if ((value == RepeatLayout.UnorderedList) || 475(value == RepeatLayout.OrderedList)) { 705return RepeatLayout == RepeatLayout.Table? 1353repeatInfo.RepeatLayout = RepeatLayout.Flow; 1373if (repeatInfo.RepeatLayout == RepeatLayout.Table) { 1511item.RenderItem(writer, extractTemplateRows, repeatInfo.RepeatLayout == RepeatLayout.Table);
UI\WebControls\RadioButtonList.cs (7)
173DefaultValue(RepeatLayout.Table), 176public virtual RepeatLayout RepeatLayout { 179return((o == null) ? RepeatLayout.Table : (RepeatLayout)o); 310if (RepeatLayout == RepeatLayout.Table && RenderWhenDataEmpty) { 343repeatInfo.RepeatLayout = RepeatLayout.Flow; 349if (repeatInfo.RepeatLayout == RepeatLayout.Flow) {
UI\WebControls\RepeatInfo.cs (11)
22private RepeatLayout repeatLayout; 37repeatLayout = RepeatLayout.Table; 79(RepeatLayout == RepeatLayout.UnorderedList) || 80(RepeatLayout == RepeatLayout.OrderedList); 130public RepeatLayout RepeatLayout { 171case RepeatLayout.Table: 179case RepeatLayout.Flow: 410case RepeatLayout.Table: 418case RepeatLayout.Flow: 421case RepeatLayout.UnorderedList: 424case RepeatLayout.OrderedList:
Util\EnumerationRangeValidationUtil.cs (3)
19public static void ValidateRepeatLayout(RepeatLayout value) { 20if (value < RepeatLayout.Table || value > RepeatLayout.OrderedList) {