1 write to Bottom
PresentationFramework (1)
src\Framework\System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
692Bottom = Math.Max(prevBottom, region.Bottom);
24 references to Bottom
PresentationFramework (24)
src\Framework\System\Windows\Controls\VirtualizedCellInfoCollection.cs (24)
167int bottom = region.Bottom; 591return (x >= Left) && (y >= Top) && (x <= Right) && (y <= Bottom); 598(Right >= region.Right) && (Bottom >= region.Bottom); 604Intersects(Top, Bottom, region.Top, region.Bottom); 619int bottom = Math.Min(Bottom, region.Bottom); 663int end = xMatch ? Bottom : Right; 665int compareEnd = xMatch ? region.Bottom : region.Right; 688int prevBottom = Bottom; 692Bottom = Math.Max(prevBottom, region.Bottom); 733int bottom = Math.Min(Bottom, region.Bottom); 741int bottom = Math.Min(Bottom, region.Bottom); 745if (Bottom > region.Bottom) 748remainder.Add(new CellRegion(Left, region.Bottom + 1, Width, Bottom - region.Bottom)); 820if (region.Bottom > bottom) 822bottom = region.Bottom; 1643for (int rowIndex = region.Top; rowIndex <= region.Bottom; rowIndex++)