1 write to Right
PresentationFramework (1)
src\Framework\System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
691Right = Math.Max(prevRight, region.Right);
20 references to Right
PresentationFramework (20)
src\Framework\System\Windows\Controls\VirtualizedCellInfoCollection.cs (20)
165if ((region.Left <= columnIndex) && (columnIndex <= region.Right)) 591return (x >= Left) && (y >= Top) && (x <= Right) && (y <= Bottom); 598(Right >= region.Right) && (Bottom >= region.Bottom); 603return Intersects(Left, Right, region.Left, region.Right) && 618int right = Math.Min(Right, region.Right); 663int end = xMatch ? Bottom : Right; 665int compareEnd = xMatch ? region.Bottom : region.Right; 687int prevRight = Right; 691Right = Math.Max(prevRight, region.Right); 737if (Right > region.Right) 742remainder.Add(new CellRegion(region.Right + 1, top, Right - region.Right, bottom - top + 1)); 815if (region.Right > right) 817right = region.Right; 1646for (int columnIndex = region.Left; columnIndex <= region.Right; columnIndex++)