1 write to Right
PresentationFramework (1)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
684
Right
= Math.Max(prevRight, region.Right);
20 references to Right
PresentationFramework (20)
System\Windows\Controls\VirtualizedCellInfoCollection.cs (20)
160
if ((region.Left <= columnIndex) && (columnIndex <= region.
Right
))
584
return (x >= Left) && (y >= Top) && (x <=
Right
) && (y <= Bottom);
591
(
Right
>= region.
Right
) && (Bottom >= region.Bottom);
596
return Intersects(Left,
Right
, region.Left, region.
Right
) &&
611
int right = Math.Min(
Right
, region.
Right
);
656
int end = xMatch ? Bottom :
Right
;
658
int compareEnd = xMatch ? region.Bottom : region.
Right
;
680
int prevRight =
Right
;
684
Right = Math.Max(prevRight, region.
Right
);
730
if (
Right
> region.
Right
)
735
remainder.Add(new CellRegion(region.
Right
+ 1, top,
Right
- region.
Right
, bottom - top + 1));
808
if (region.
Right
> right)
810
right = region.
Right
;
1639
for (int columnIndex = region.Left; columnIndex <= region.
Right
; columnIndex++)