5 writes to _pixelHeight
PresentationCore (5)
System\Windows\Media\Imaging\BitmapSizeOptions.cs (5)
94
_pixelHeight
= 0,
113
_pixelHeight
= pixelHeight,
133
_pixelHeight
= 0
155
_pixelHeight
= pixelHeight
184
_pixelHeight
= 0
8 references to _pixelHeight
PresentationCore (8)
System\Windows\Media\Imaging\BitmapSizeOptions.cs (8)
69
return
_pixelHeight
;
198
if (_pixelWidth == 0 &&
_pixelHeight
!= 0)
202
newWidth = (uint)((
_pixelHeight
* width)/height);
203
newHeight = (uint)
_pixelHeight
;
205
else if (_pixelWidth != 0 &&
_pixelHeight
== 0)
212
else if (_pixelWidth != 0 &&
_pixelHeight
!= 0)
217
newHeight = (uint)
_pixelHeight
;
230
return (_pixelWidth != 0 ||
_pixelHeight
!= 0);