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