System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (17)
622Rectangle rect = GetRectangle(row, RowValue | RowLabel);
1179Rectangle rect = GetRectangle(row, RowValue);
1266if (!toggleExpand || type == RowValue)
1392Rectangle r = GetRectangle(row, rowValue ? RowValue : RowLabel);
1446Rectangle rect = GetRectangle(_selectedRow, RowValue);
1690pt.X = RowValue;
1916bool fValue = (flRow & RowValue) != 0;
2019InvalidateRows(row, row, RowValue);
2023private void InvalidateRow(int row) => InvalidateRows(row, row, RowValue | RowLabel);
2025private void InvalidateRows(int startRow, int endRow) => InvalidateRows(startRow, endRow, RowValue | RowLabel);
2617DoubleClickRow(_selectedRow, toggleExpand: false, RowValue);
2638DoubleClickRow(_selectedRow, toggleExpand: false, RowValue);
3069if (point == InvalidPosition || (point.X != RowLabel && point.X != RowValue))
3443DoubleClickRow(row, gridEntry.Expandable, RowValue);
3775DropDownListBox.Width = Math.Max(maxWidth, GetRectangle(row, RowValue).Width);
4353Rectangle rect = GetRectangle(row, RowValue);
5315else if (mouseLoc.X == RowValue)