5 writes to _pixelWidth
PresentationCore (5)
System\Windows\Media\Imaging\BitmapSizeOptions.cs (5)
96sizeOptions._pixelWidth = 0; 114sizeOptions._pixelWidth = 0; 131sizeOptions._pixelWidth = pixelWidth; 152sizeOptions._pixelWidth = pixelWidth; 180sizeOptions._pixelWidth = 0;
8 references to _pixelWidth
PresentationCore (8)
System\Windows\Media\Imaging\BitmapSizeOptions.cs (8)
56return _pixelWidth; 194if (_pixelWidth == 0 && _pixelHeight != 0) 201else if (_pixelWidth != 0 && _pixelHeight == 0) 205newWidth = (uint)_pixelWidth; 206newHeight = (uint)((_pixelWidth * height)/width); 208else if (_pixelWidth != 0 && _pixelHeight != 0) 212newWidth = (uint)_pixelWidth; 226return (_pixelWidth != 0 || _pixelHeight != 0);