1 write to Right
PresentationFramework (1)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
683Right = Math.Max(prevRight, region.Right);
20 references to Right
PresentationFramework (20)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (20)
159if ((region.Left <= columnIndex) && (columnIndex <= region.Right)) 583return (x >= Left) && (y >= Top) && (x <= Right) && (y <= Bottom); 590(Right >= region.Right) && (Bottom >= region.Bottom); 595return Intersects(Left, Right, region.Left, region.Right) && 610int right = Math.Min(Right, region.Right); 655int end = xMatch ? Bottom : Right; 657int compareEnd = xMatch ? region.Bottom : region.Right; 679int prevRight = Right; 683Right = Math.Max(prevRight, region.Right); 729if (Right > region.Right) 734remainder.Add(new CellRegion(region.Right + 1, top, Right - region.Right, bottom - top + 1)); 807if (region.Right > right) 809right = region.Right; 1638for (int columnIndex = region.Left; columnIndex <= region.Right; columnIndex++)