System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (14)
455Rectangle rect = GetRectangle(_selectedRow, RowLabel);
599Rectangle rect = GetRectangle(row, RowValue | RowLabel);
1264if (type == RowLabel && toggleExpand && gridEntry.Expandable)
1363Rectangle r = GetRectangle(row, rowValue ? RowValue : RowLabel);
1658Point pt = new(RowLabel, 0);
1886bool fLabel = (flRow & RowLabel) != 0;
1994private void InvalidateRow(int row) => InvalidateRows(row, row, RowValue | RowLabel);
1996private void InvalidateRows(int startRow, int endRow) => InvalidateRows(startRow, endRow, RowValue | RowLabel);
2981Rectangle r = GetRectangle(pos.Y, RowLabel);
3025if (point == InvalidPosition || (point.X != RowLabel && point.X != RowValue))
3033onLabel = point.X == RowLabel;
3327Rectangle rect = GetRectangle(i, RowLabel);
3379DoubleClickRow(row, gridEntry.Expandable, RowLabel);
5270if (mouseLoc.X == RowLabel)