5 writes to Column
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanelCellPosition.cs (1)
17Column = column;
System.Windows.Forms.Tests (4)
System\Windows\Forms\Layout\TableLayoutSettingsTests.cs (2)
212settings.SetCellPosition(child, new TableLayoutPanelCellPosition { Column = -2 }); 222settings.SetCellPosition(child, new TableLayoutPanelCellPosition { Column = -2 });
System\Windows\Forms\TableLayoutPanelCellPositionTests.cs (1)
50Column = value
System\Windows\Forms\TableLayoutPanelTests.cs (1)
663control.SetCellPosition(child, new TableLayoutPanelCellPosition { Column = -2 });
24 references to Column
System.Windows.Forms (10)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanelCellPosition.cs (6)
35=> Row == other.Row && Column == other.Column; 39return p1.Row == p2.Row && p1.Column == p2.Column; 47public override readonly string ToString() => $"{Column},{Row}"; 49public override readonly int GetHashCode() => HashCode.Combine(Row, Column);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanelCellPositionTypeConverter.cs (3)
70new object[] { cellPosition.Column, cellPosition.Row }); 83(int)propertyValues[nameof(TableLayoutPanelCellPosition.Column)]!, 103return props.Sort([nameof(TableLayoutPanelCellPosition.Column), nameof(TableLayoutPanelCellPosition.Row)]);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
368SetCellPosition(control, cellPosition.Row, cellPosition.Column, rowSpecified: true, colSpecified: true);
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (2)
1051if ((pos.Row == -1) && (pos.Column == -1)) 1056return new Point(pos.Column, pos.Row);
System.Windows.Forms.Tests (12)
System\Windows\Forms\TableLayoutPanelCellPositionTests.cs (12)
17Assert.Equal(0, style.Column); 28Assert.Equal(column, style.Column); 52Assert.Equal(value, style.Column); 210{ nameof(TableLayoutPanelCellPosition.Column), 1 }, 230{ nameof(TableLayoutPanelCellPosition.Column), 2 }, 238{ nameof(TableLayoutPanelCellPosition.Column), 2 }, 245{ nameof(TableLayoutPanelCellPosition.Column), 2 } 254{ nameof(TableLayoutPanelCellPosition.Column), new object() } 262{ nameof(TableLayoutPanelCellPosition.Column), null } 288{ nameof(TableLayoutPanelCellPosition.Column), -2 }, 299{ nameof(TableLayoutPanelCellPosition.Column), 1 }, 317Assert.Equal(nameof(TableLayoutPanelCellPosition.Column), properties[0].Name);