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)
54
return
_tableLayoutSettings
;
63
_tableLayoutSettings
.ApplySettings(value);
98
get { return
_tableLayoutSettings
.CellBorderStyle; }
100
_tableLayoutSettings
.CellBorderStyle = value;
112
get { return
_tableLayoutSettings
.CellBorderWidth; }
134
get { return
_tableLayoutSettings
.ColumnCount; }
136
_tableLayoutSettings
.ColumnCount = value;
152
return
_tableLayoutSettings
.GrowStyle;
155
_tableLayoutSettings
.GrowStyle = value;
170
get { return
_tableLayoutSettings
.RowCount; }
171
set {
_tableLayoutSettings
.RowCount = value; }
182
get { return
_tableLayoutSettings
.RowStyles; }
193
get { return
_tableLayoutSettings
.ColumnStyles; }
224
return
_tableLayoutSettings
.GetColumnSpan(control);
230
_tableLayoutSettings
.SetColumnSpan(control, value);
240
return
_tableLayoutSettings
.GetRowSpan(control);
246
_tableLayoutSettings
.SetRowSpan(control, value);
258
return
_tableLayoutSettings
.GetRow(control);
264
_tableLayoutSettings
.SetRow(control, row);
276
return
_tableLayoutSettings
.GetCellPosition(control);
282
_tableLayoutSettings
.SetCellPosition(control, position);
295
return
_tableLayoutSettings
.GetColumn(control);
301
_tableLayoutSettings
.SetColumn(control, column);
310
return (Control)
_tableLayoutSettings
.GetControlFromPosition(column, row);
315
return
_tableLayoutSettings
.GetPositionFromControl(control);