1 write to CellBorderWidth
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
76
containerInfo.
CellBorderWidth
= s_borderStyleToOffset[(int)value];
9 references to CellBorderWidth
System.Windows.Forms (9)
System\Windows\Forms\Layout\TableLayout.ContainerInfo.cs (1)
52
_cellBorderWidth = containerInfo.
CellBorderWidth
;
System\Windows\Forms\Layout\TableLayout.cs (7)
102
int cellBorderWidth = containerInfo.
CellBorderWidth
;
156
int cellBorderWidth = containerInfo.
CellBorderWidth
;
740
DistributeSize(containerInfo.ColumnStyles, containerInfo.Columns, layoutInfo.ColumnStart, colStop, minWidth, maxWidth, containerInfo.
CellBorderWidth
);
744
int width = DistributeStyles(containerInfo.
CellBorderWidth
, containerInfo.ColumnStyles, containerInfo.Columns, proposedConstraints.Width, dontHonorConstraint);
857
DistributeSize(containerInfo.RowStyles, containerInfo.Rows, layoutInfo.RowStart, rowStop, minHeight, maxHeight, containerInfo.
CellBorderWidth
);
861
return DistributeStyles(containerInfo.
CellBorderWidth
, containerInfo.RowStyles, containerInfo.Rows, proposedConstraints.Height, dontHonorConstraint);
1175
int cellBorderWidth = containerInfo.
CellBorderWidth
;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
83
internal int CellBorderWidth => TableLayout.GetContainerInfo(Owner!).
CellBorderWidth
;