System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (17)
622Rectangle rect = GetRectangle(row, RowValue | RowLabel);
1179Rectangle rect = GetRectangle(row, RowValue);
1266if (!toggleExpand || type == RowValue)
1386Rectangle r = GetRectangle(row, rowValue ? RowValue : RowLabel);
1440Rectangle rect = GetRectangle(_selectedRow, RowValue);
1684pt.X = RowValue;
1910bool fValue = (flRow & RowValue) != 0;
2013InvalidateRows(row, row, RowValue);
2017private void InvalidateRow(int row) => InvalidateRows(row, row, RowValue | RowLabel);
2019private void InvalidateRows(int startRow, int endRow) => InvalidateRows(startRow, endRow, RowValue | RowLabel);
2611DoubleClickRow(_selectedRow, toggleExpand: false, RowValue);
2632DoubleClickRow(_selectedRow, toggleExpand: false, RowValue);
3063if (point == InvalidPosition || (point.X != RowLabel && point.X != RowValue))
3431DoubleClickRow(row, gridEntry.Expandable, RowValue);
3763DropDownListBox.Width = Math.Max(maxWidth, GetRectangle(row, RowValue).Width);
4341Rectangle rect = GetRectangle(row, RowValue);
5303else if (mouseLoc.X == RowValue)