4 writes to _pixelHeight
PresentationCore (4)
System\Windows\Media\Imaging\BitmapSource.cs (2)
639
_pixelHeight
= (int)ph;
1499
_pixelHeight
= sourceBitmap.PixelHeight;
System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
79
_pixelHeight
= pixelHeight;
112
_pixelHeight
= sourceBitmap._pixelHeight;
11 references to _pixelHeight
PresentationCore (11)
System\Windows\Media\Imaging\BitmapSource.cs (1)
198
return
_pixelHeight
;
System\Windows\Media\Imaging\InteropBitmapSource.cs (1)
281
dirtyRect.Value.ValidateForDirtyRect("dirtyRect", _pixelWidth,
_pixelHeight
);
System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
112
_pixelHeight = sourceBitmap.
_pixelHeight
;
261
(uint)
_pixelHeight
,
System\Windows\Media\Imaging\WriteableBitmap.cs (7)
184
dirtyRect.ValidateForDirtyRect("dirtyRect", _pixelWidth,
_pixelHeight
);
272
Int32Rect rect = new Int32Rect(0, 0, _pixelWidth,
_pixelHeight
);
782
Int32Rect rcFull = new Int32Rect(0, 0, _pixelWidth,
_pixelHeight
);
843
ArgumentOutOfRangeException.ThrowIfGreaterThan(sourceRect.Height,
_pixelHeight
, nameof(sourceRect));
847
ArgumentOutOfRangeException.ThrowIfGreaterThan(destinationY,
_pixelHeight
- sourceRect.Height);
849
else if(sourceRect.Width > _pixelWidth || sourceRect.Height >
_pixelHeight
|| destinationX > _pixelWidth - sourceRect.Width || destinationY >
_pixelHeight
- sourceRect.Height)