1 write to Row
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanelCellPosition.cs (1)
16
Row
= row;
12 references to Row
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
});
84
(int)propertyValues[nameof(TableLayoutPanelCellPosition.
Row
)]!);
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)
1045
if ((pos.
Row
== -1) && (pos.Column == -1))
1050
return new Point(pos.Column, pos.
Row
);