1 write to MaxColumns
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
105containerInfo.MaxColumns = value;
6 references to MaxColumns
System.Windows.Forms (6)
System\Windows\Forms\Layout\TableLayout.ContainerInfo.cs (1)
54_maxColumns = containerInfo.MaxColumns;
System\Windows\Forms\Layout\TableLayout.cs (4)
159if (containerInfo.MaxColumns == 1 && containerInfo.ColumnStyles.Count > 0 && containerInfo.ColumnStyles[0].SizeType == SizeType.Absolute) 243int numCols = containerInfo.MaxColumns; 468numColumns = Math.Max(containerInfo.MaxColumns, numColumns); 847if (!dontHonorConstraint && layoutInfo.ColumnStart + layoutInfo.ColumnSpan >= containerInfo.MaxColumns && !multiplePercent)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
98return containerInfo.MaxColumns;