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