2 writes to Height
PresentationCore (2)
Core\CSharp\System\Windows\Media\Imaging\BitmapSource.cs (1)
804sourceRect.Height = PixelHeight;
Core\CSharp\System\Windows\Media\Imaging\CroppedBitmap.cs (1)
124rect.Height = source.PixelHeight;
23 references to Height
PresentationCore (18)
Core\CSharp\System\Windows\Interop\D3DImage.cs (1)
360dirtyRect.Height,
Core\CSharp\System\Windows\Media\Imaging\BitmapImage.cs (1)
409sourceRect.Height == source.PixelHeight)
Core\CSharp\System\Windows\Media\Imaging\BitmapSource.cs (5)
803if (sourceRect.Height <= 0) 809if (sourceRect.Height > PixelHeight) 816int minRequiredDestSize = checked((stride * (sourceRect.Height - 1)) + minStride); 1968rectHeight = rc.Height; 1971if (rc.Width < 1 || rc.Height < 1)
Core\CSharp\System\Windows\Media\Imaging\InteropBitmapSource.cs (1)
394data.DirtyRect.bottom = dirtyRect.Value.Y + dirtyRect.Value.Height;
Core\CSharp\System\Windows\Media\Imaging\WriteableBitmap.cs (10)
514if (sourceRect.IsEmpty || sourceRect.Width <= 0 || sourceRect.Height <= 0) 562if (sourceRect.IsEmpty || sourceRect.Width <= 0 || sourceRect.Height <= 0) 964if (sourceRect.Height < 0) 970if (sourceRect.Height > _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)); 1049if (sourceRect.Width == 0 || sourceRect.Height == 0) 1061uint requiredBufferSize = (uint)((sourceRect.Y + sourceRect.Height - 1) * sourceBufferStride) + finalRowWidthInBytes; 1112(uint) sourceRect.Height,
WindowsBase (5)
Base\System\Windows\Generated\Int32Rect.cs (5)
67int32Rect1.Height == int32Rect2.Height; 108int32Rect1.Height.Equals(int32Rect2.Height); 167Height.GetHashCode();