5 writes to _pixelHeight
PresentationCore (5)
System\Windows\Media\Imaging\BitmapSizeOptions.cs (5)
95
_pixelHeight
= 0,
114
_pixelHeight
= pixelHeight,
134
_pixelHeight
= 0
156
_pixelHeight
= pixelHeight
185
_pixelHeight
= 0
8 references to _pixelHeight
PresentationCore (8)
System\Windows\Media\Imaging\BitmapSizeOptions.cs (8)
70
return
_pixelHeight
;
199
if (_pixelWidth == 0 &&
_pixelHeight
!= 0)
203
newWidth = (uint)((
_pixelHeight
* width)/height);
204
newHeight = (uint)
_pixelHeight
;
206
else if (_pixelWidth != 0 &&
_pixelHeight
== 0)
213
else if (_pixelWidth != 0 &&
_pixelHeight
!= 0)
218
newHeight = (uint)
_pixelHeight
;
231
return (_pixelWidth != 0 ||
_pixelHeight
!= 0);