5 writes to _pixelWidth
PresentationCore (5)
Core\CSharp\System\Windows\Media\Imaging\BitmapSizeOptions.cs (5)
111sizeOptions._pixelWidth = 0; 132sizeOptions._pixelWidth = 0; 152sizeOptions._pixelWidth = pixelWidth; 180sizeOptions._pixelWidth = pixelWidth; 208sizeOptions._pixelWidth = 0;
8 references to _pixelWidth
PresentationCore (8)
Core\CSharp\System\Windows\Media\Imaging\BitmapSizeOptions.cs (8)
71return _pixelWidth; 222if (_pixelWidth == 0 && _pixelHeight != 0) 229else if (_pixelWidth != 0 && _pixelHeight == 0) 233newWidth = (uint)_pixelWidth; 234newHeight = (uint)((_pixelWidth * height)/width); 236else if (_pixelWidth != 0 && _pixelHeight != 0) 240newWidth = (uint)_pixelWidth; 254return (_pixelWidth != 0 || _pixelHeight != 0);