5 writes to _pixelHeight
PresentationCore (5)
Core\CSharp\System\Windows\Media\Imaging\BitmapSizeOptions.cs (5)
110
sizeOptions.
_pixelHeight
= 0;
131
sizeOptions.
_pixelHeight
= pixelHeight;
153
sizeOptions.
_pixelHeight
= 0;
181
sizeOptions.
_pixelHeight
= pixelHeight;
209
sizeOptions.
_pixelHeight
= 0;
8 references to _pixelHeight
PresentationCore (8)
Core\CSharp\System\Windows\Media\Imaging\BitmapSizeOptions.cs (8)
85
return
_pixelHeight
;
222
if (_pixelWidth == 0 &&
_pixelHeight
!= 0)
226
newWidth = (uint)((
_pixelHeight
* width)/height);
227
newHeight = (uint)
_pixelHeight
;
229
else if (_pixelWidth != 0 &&
_pixelHeight
== 0)
236
else if (_pixelWidth != 0 &&
_pixelHeight
!= 0)
241
newHeight = (uint)
_pixelHeight
;
254
return (_pixelWidth != 0 ||
_pixelHeight
!= 0);