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