1 write to _tableLayoutSettings
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
29_tableLayoutSettings = TableLayout.CreateSettings(this);
25 references to _tableLayoutSettings
System.Windows.Forms (25)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (25)
39get => _tableLayoutSettings; 50_tableLayoutSettings.ApplySettings(value); 79get { return _tableLayoutSettings.CellBorderStyle; } 82_tableLayoutSettings.CellBorderStyle = value; 95private int CellBorderWidth => _tableLayoutSettings.CellBorderWidth; 113get => _tableLayoutSettings.ColumnCount; 116_tableLayoutSettings.ColumnCount = value; 131get => _tableLayoutSettings.GrowStyle; 132set => _tableLayoutSettings.GrowStyle = value; 146get => _tableLayoutSettings.RowCount; 147set => _tableLayoutSettings.RowCount = value; 156public TableLayoutRowStyleCollection RowStyles => _tableLayoutSettings.RowStyles; 164public TableLayoutColumnStyleCollection ColumnStyles => _tableLayoutSettings.ColumnStyles; 184_tableLayoutSettings.GetColumnSpan(control); 189_tableLayoutSettings.SetColumnSpan(control, value); 197public int GetRowSpan(Control control) => _tableLayoutSettings.GetRowSpan(control); 202_tableLayoutSettings.SetRowSpan(control, value); 212public int GetRow(Control control) => _tableLayoutSettings.GetRow(control); 217_tableLayoutSettings.SetRow(control, row); 228_tableLayoutSettings.GetCellPosition(control); 232_tableLayoutSettings.SetCellPosition(control, position); 240public int GetColumn(Control control) => _tableLayoutSettings.GetColumn(control); 245_tableLayoutSettings.SetColumn(control, column); 253(Control?)_tableLayoutSettings.GetControlFromPosition(column, row); 256_tableLayoutSettings.GetPositionFromControl(control);