System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (14)
478Rectangle rect = GetRectangle(_selectedRow, RowLabel);
622Rectangle rect = GetRectangle(row, RowValue | RowLabel);
1287if (type == RowLabel && toggleExpand && gridEntry.Expandable)
1386Rectangle r = GetRectangle(row, rowValue ? RowValue : RowLabel);
1681Point pt = new(RowLabel, 0);
1909bool fLabel = (flRow & RowLabel) != 0;
2017private void InvalidateRow(int row) => InvalidateRows(row, row, RowValue | RowLabel);
2019private void InvalidateRows(int startRow, int endRow) => InvalidateRows(startRow, endRow, RowValue | RowLabel);
3019Rectangle r = GetRectangle(pos.Y, RowLabel);
3063if (point == InvalidPosition || (point.X != RowLabel && point.X != RowValue))
3071onLabel = point.X == RowLabel;
3365Rectangle rect = GetRectangle(i, RowLabel);
3417DoubleClickRow(row, gridEntry.Expandable, RowLabel);
5299if (mouseLoc.X == RowLabel)