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