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)
39
get =>
_tableLayoutSettings
;
50
_tableLayoutSettings
.ApplySettings(value);
79
get { return
_tableLayoutSettings
.CellBorderStyle; }
82
_tableLayoutSettings
.CellBorderStyle = value;
95
private int CellBorderWidth =>
_tableLayoutSettings
.CellBorderWidth;
113
get =>
_tableLayoutSettings
.ColumnCount;
116
_tableLayoutSettings
.ColumnCount = value;
131
get =>
_tableLayoutSettings
.GrowStyle;
132
set =>
_tableLayoutSettings
.GrowStyle = value;
146
get =>
_tableLayoutSettings
.RowCount;
147
set =>
_tableLayoutSettings
.RowCount = value;
156
public TableLayoutRowStyleCollection RowStyles =>
_tableLayoutSettings
.RowStyles;
164
public TableLayoutColumnStyleCollection ColumnStyles =>
_tableLayoutSettings
.ColumnStyles;
184
_tableLayoutSettings
.GetColumnSpan(control);
189
_tableLayoutSettings
.SetColumnSpan(control, value);
197
public int GetRowSpan(Control control) =>
_tableLayoutSettings
.GetRowSpan(control);
202
_tableLayoutSettings
.SetRowSpan(control, value);
212
public int GetRow(Control control) =>
_tableLayoutSettings
.GetRow(control);
217
_tableLayoutSettings
.SetRow(control, row);
228
_tableLayoutSettings
.GetCellPosition(control);
232
_tableLayoutSettings
.SetCellPosition(control, position);
240
public int GetColumn(Control control) =>
_tableLayoutSettings
.GetColumn(control);
245
_tableLayoutSettings
.SetColumn(control, column);
253
(Control?)
_tableLayoutSettings
.GetControlFromPosition(column, row);
256
_tableLayoutSettings
.GetPositionFromControl(control);