5 writes to Column
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanelCellPosition.cs (1)
17
Column
= column;
System.Windows.Forms.Tests (4)
System\Windows\Forms\Layout\TableLayoutSettingsTests.cs (2)
214
settings.SetCellPosition(child, new TableLayoutPanelCellPosition {
Column
= -2 });
224
settings.SetCellPosition(child, new TableLayoutPanelCellPosition {
Column
= -2 });
System\Windows\Forms\TableLayoutPanelCellPositionTests.cs (1)
52
Column
= value
System\Windows\Forms\TableLayoutPanelTests.cs (1)
665
control.SetCellPosition(child, new TableLayoutPanelCellPosition {
Column
= -2 });
25 references to Column
System.Windows.Forms (10)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanelCellPosition.cs (6)
35
=> Row == other.Row &&
Column
== other.
Column
;
39
return p1.Row == p2.Row && p1.
Column
== p2.
Column
;
47
public override readonly string ToString() => $"{
Column
},{Row}";
49
public override readonly int GetHashCode() => HashCode.Combine(Row,
Column
);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanelCellPositionTypeConverter.cs (3)
70
new object[] { cellPosition.
Column
, cellPosition.Row });
83
(int)propertyValues[nameof(TableLayoutPanelCellPosition.
Column
)]!,
103
return props.Sort([nameof(TableLayoutPanelCellPosition.
Column
), nameof(TableLayoutPanelCellPosition.Row)]);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
368
SetCellPosition(control, cellPosition.Row, cellPosition.
Column
, rowSpecified: true, colSpecified: true);
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (2)
1051
if ((pos.Row == -1) && (pos.
Column
== -1))
1056
return new Point(pos.
Column
, pos.Row);
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\TableLayoutPanelDesignerTests.cs (1)
290
position.
Column
.Should().Be(1);
System.Windows.Forms.Tests (12)
System\Windows\Forms\TableLayoutPanelCellPositionTests.cs (12)
19
Assert.Equal(0, style.
Column
);
30
Assert.Equal(column, style.
Column
);
54
Assert.Equal(value, style.
Column
);
212
{ nameof(TableLayoutPanelCellPosition.
Column
), 1 },
232
{ nameof(TableLayoutPanelCellPosition.
Column
), 2 },
240
{ nameof(TableLayoutPanelCellPosition.
Column
), 2 },
247
{ nameof(TableLayoutPanelCellPosition.
Column
), 2 }
256
{ nameof(TableLayoutPanelCellPosition.
Column
), new object() }
264
{ nameof(TableLayoutPanelCellPosition.
Column
), null }
290
{ nameof(TableLayoutPanelCellPosition.
Column
), -2 },
301
{ nameof(TableLayoutPanelCellPosition.
Column
), 1 },
319
Assert.Equal(nameof(TableLayoutPanelCellPosition.
Column
), properties[0].Name);