4 writes to _pixelHeight
PresentationCore (4)
System\Windows\Media\Imaging\BitmapSource.cs (2)
624
_pixelHeight
= (int)ph;
1453
_pixelHeight
= sourceBitmap.PixelHeight;
System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
59
_pixelHeight
= pixelHeight;
92
_pixelHeight
= sourceBitmap._pixelHeight;
11 references to _pixelHeight
PresentationCore (11)
System\Windows\Media\Imaging\BitmapSource.cs (1)
183
return
_pixelHeight
;
System\Windows\Media\Imaging\InteropBitmapSource.cs (1)
262
dirtyRect.Value.ValidateForDirtyRect(nameof(dirtyRect), _pixelWidth,
_pixelHeight
);
System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
92
_pixelHeight = sourceBitmap.
_pixelHeight
;
241
(uint)
_pixelHeight
,
System\Windows\Media\Imaging\WriteableBitmap.cs (7)
166
dirtyRect.ValidateForDirtyRect(nameof(dirtyRect), _pixelWidth,
_pixelHeight
);
254
Int32Rect rect = new Int32Rect(0, 0, _pixelWidth,
_pixelHeight
);
747
Int32Rect rcFull = new Int32Rect(0, 0, _pixelWidth,
_pixelHeight
);
808
ArgumentOutOfRangeException.ThrowIfGreaterThan(sourceRect.Height,
_pixelHeight
, nameof(sourceRect));
812
ArgumentOutOfRangeException.ThrowIfGreaterThan(destinationY,
_pixelHeight
- sourceRect.Height);
814
else if(sourceRect.Width > _pixelWidth || sourceRect.Height >
_pixelHeight
|| destinationX > _pixelWidth - sourceRect.Width || destinationY >
_pixelHeight
- sourceRect.Height)