1 write to _tableLayoutSettings
System.Windows.Forms (1)
winforms\Managed\System\WinForms\TableLayoutPanel.cs (1)
39_tableLayoutSettings = TableLayout.CreateSettings(this);
25 references to _tableLayoutSettings
System.Windows.Forms (25)
winforms\Managed\System\WinForms\TableLayoutPanel.cs (25)
54return _tableLayoutSettings; 63_tableLayoutSettings.ApplySettings(value); 98get { return _tableLayoutSettings.CellBorderStyle; } 100_tableLayoutSettings.CellBorderStyle = value; 112get { return _tableLayoutSettings.CellBorderWidth; } 134get { return _tableLayoutSettings.ColumnCount; } 136_tableLayoutSettings.ColumnCount = value; 152return _tableLayoutSettings.GrowStyle; 155_tableLayoutSettings.GrowStyle = value; 170get { return _tableLayoutSettings.RowCount; } 171set { _tableLayoutSettings.RowCount = value; } 182get { return _tableLayoutSettings.RowStyles; } 193get { return _tableLayoutSettings.ColumnStyles; } 224return _tableLayoutSettings.GetColumnSpan(control); 230_tableLayoutSettings.SetColumnSpan(control, value); 240return _tableLayoutSettings.GetRowSpan(control); 246_tableLayoutSettings.SetRowSpan(control, value); 258return _tableLayoutSettings.GetRow(control); 264_tableLayoutSettings.SetRow(control, row); 276return _tableLayoutSettings.GetCellPosition(control); 282_tableLayoutSettings.SetCellPosition(control, position); 295return _tableLayoutSettings.GetColumn(control); 301_tableLayoutSettings.SetColumn(control, column); 310return (Control)_tableLayoutSettings.GetControlFromPosition(column, row); 315return _tableLayoutSettings.GetPositionFromControl(control);