System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (17)
623Rectangle rect = GetRectangle(row, RowValue | RowLabel);
1180Rectangle rect = GetRectangle(row, RowValue);
1267if (!toggleExpand || type == RowValue)
1387Rectangle r = GetRectangle(row, rowValue ? RowValue : RowLabel);
1441Rectangle rect = GetRectangle(_selectedRow, RowValue);
1685pt.X = RowValue;
1911bool fValue = (flRow & RowValue) != 0;
2014InvalidateRows(row, row, RowValue);
2018private void InvalidateRow(int row) => InvalidateRows(row, row, RowValue | RowLabel);
2020private void InvalidateRows(int startRow, int endRow) => InvalidateRows(startRow, endRow, RowValue | RowLabel);
2612DoubleClickRow(_selectedRow, toggleExpand: false, RowValue);
2633DoubleClickRow(_selectedRow, toggleExpand: false, RowValue);
3064if (point == InvalidPosition || (point.X != RowLabel && point.X != RowValue))
3432DoubleClickRow(row, gridEntry.Expandable, RowValue);
3764DropDownListBox.Width = Math.Max(maxWidth, GetRectangle(row, RowValue).Width);
4342Rectangle rect = GetRectangle(row, RowValue);
5304else if (mouseLoc.X == RowValue)