5 writes to _pixelHeight
PresentationCore (5)
Core\CSharp\System\Windows\Media\Imaging\BitmapSizeOptions.cs (5)
110sizeOptions._pixelHeight = 0; 131sizeOptions._pixelHeight = pixelHeight; 153sizeOptions._pixelHeight = 0; 181sizeOptions._pixelHeight = pixelHeight; 209sizeOptions._pixelHeight = 0;
8 references to _pixelHeight
PresentationCore (8)
Core\CSharp\System\Windows\Media\Imaging\BitmapSizeOptions.cs (8)
85return _pixelHeight; 222if (_pixelWidth == 0 && _pixelHeight != 0) 226newWidth = (uint)((_pixelHeight * width)/height); 227newHeight = (uint)_pixelHeight; 229else if (_pixelWidth != 0 && _pixelHeight == 0) 236else if (_pixelWidth != 0 && _pixelHeight != 0) 241newHeight = (uint)_pixelHeight; 254return (_pixelWidth != 0 || _pixelHeight != 0);