4 writes to _pixelHeight
PresentationCore (4)
Core\CSharp\System\Windows\Media\Imaging\BitmapSource.cs (2)
693
_pixelHeight
= (int)ph;
1606
_pixelHeight
= sourceBitmap.PixelHeight;
Core\CSharp\System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
94
_pixelHeight
= pixelHeight;
132
_pixelHeight
= sourceBitmap._pixelHeight;
13 references to _pixelHeight
PresentationCore (13)
Core\CSharp\System\Windows\Media\Imaging\BitmapSource.cs (1)
218
return
_pixelHeight
;
Core\CSharp\System\Windows\Media\Imaging\InteropBitmapSource.cs (1)
357
dirtyRect.Value.ValidateForDirtyRect("dirtyRect", _pixelWidth,
_pixelHeight
);
Core\CSharp\System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
132
_pixelHeight = sourceBitmap.
_pixelHeight
;
299
(uint)
_pixelHeight
,
Core\CSharp\System\Windows\Media\Imaging\WriteableBitmap.cs (9)
210
dirtyRect.ValidateForDirtyRect("dirtyRect", _pixelWidth,
_pixelHeight
);
304
Int32Rect rect = new Int32Rect(0, 0, _pixelWidth,
_pixelHeight
);
882
Int32Rect rcFull = new Int32Rect(0, 0, _pixelWidth,
_pixelHeight
);
967
throw new ArgumentOutOfRangeException("sourceRect", SR.Get(SRID.ParameterMustBeBetween, 0,
_pixelHeight
));
970
if (sourceRect.Height >
_pixelHeight
)
978
throw new ArgumentOutOfRangeException("sourceRect", SR.Get(SRID.ParameterMustBeBetween, 0,
_pixelHeight
));
1014
throw new ArgumentOutOfRangeException("destinationY", SR.Get(SRID.ParameterMustBeBetween, 0,
_pixelHeight
- sourceRect.Height));
1018
if (destinationY >
_pixelHeight
- sourceRect.Height)
1026
throw new ArgumentOutOfRangeException("destinationY", SR.Get(SRID.ParameterMustBeBetween, 0,
_pixelHeight
- sourceRect.Height));