System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (17)
599Rectangle rect = GetRectangle(row, RowValue | RowLabel);
1156Rectangle rect = GetRectangle(row, RowValue);
1243if (!toggleExpand || type == RowValue)
1363Rectangle r = GetRectangle(row, rowValue ? RowValue : RowLabel);
1417Rectangle rect = GetRectangle(_selectedRow, RowValue);
1661pt.X = RowValue;
1887bool fValue = (flRow & RowValue) != 0;
1990InvalidateRows(row, row, RowValue);
1994private void InvalidateRow(int row) => InvalidateRows(row, row, RowValue | RowLabel);
1996private void InvalidateRows(int startRow, int endRow) => InvalidateRows(startRow, endRow, RowValue | RowLabel);
2577DoubleClickRow(_selectedRow, toggleExpand: false, RowValue);
2598DoubleClickRow(_selectedRow, toggleExpand: false, RowValue);
3024if (point == InvalidPosition || (point.X != RowLabel && point.X != RowValue))
3393DoubleClickRow(row, gridEntry.Expandable, RowValue);
3725DropDownListBox.Width = Math.Max(maxWidth, GetRectangle(row, RowValue).Width);
4306Rectangle rect = GetRectangle(row, RowValue);
5278else if (mouseLoc.X == RowValue)