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