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)
218return _pixelHeight;
Core\CSharp\System\Windows\Media\Imaging\InteropBitmapSource.cs (1)
357dirtyRect.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)
210dirtyRect.ValidateForDirtyRect("dirtyRect", _pixelWidth, _pixelHeight); 304Int32Rect rect = new Int32Rect(0, 0, _pixelWidth, _pixelHeight); 882Int32Rect rcFull = new Int32Rect(0, 0, _pixelWidth, _pixelHeight); 967throw new ArgumentOutOfRangeException("sourceRect", SR.Get(SRID.ParameterMustBeBetween, 0, _pixelHeight)); 970if (sourceRect.Height > _pixelHeight) 978throw new ArgumentOutOfRangeException("sourceRect", SR.Get(SRID.ParameterMustBeBetween, 0, _pixelHeight)); 1014throw new ArgumentOutOfRangeException("destinationY", SR.Get(SRID.ParameterMustBeBetween, 0, _pixelHeight - sourceRect.Height)); 1018if (destinationY > _pixelHeight - sourceRect.Height) 1026throw new ArgumentOutOfRangeException("destinationY", SR.Get(SRID.ParameterMustBeBetween, 0, _pixelHeight - sourceRect.Height));