Base:
property
Height
System.Windows.Media.ImageSource.Height
9 references to Height
PresentationFramework (2)
System\Windows\Documents\WpfPayload.cs (1)
263$"<Span xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"><InlineUIContainer><Image Width=\"{bitmapSource.Width}\" Height=\"{bitmapSource.Height}\" ><Image.Source><BitmapImage CacheOption=\"OnLoad\" UriSource=\"{imageReference}\"/></Image.Source></Image></InlineUIContainer></Span>";
System\Windows\Documents\XamlToRtfWriter.cs (1)
2057imageNaturalSize = new Size(bitmapSource.Width, bitmapSource.Height);
PresentationFramework-SystemDrawing (1)
SystemDrawingExtension.cs (1)
161int imageHeight = (int)contentImage.Height;
ReachFramework (6)
AlphaFlattener\DrawingContext.cs (2)
851imageTransform.Scale(dest.Width / image.Image.Width, dest.Height / image.Image.Height); 875double scaleY = dest.Height / image.Image.Height;
AlphaFlattener\Primitive.cs (1)
508DstRect = new Rect(0, 0, bitmap.Width, bitmap.Height),
AlphaFlattener\PrimitiveRenderer.cs (1)
467double imageHeight = ip.Image.Image.Height;
Serialization\DrawingContextFlattener.cs (1)
435_dc.DrawImage(bitmap, new Rect(0, 0, bitmap.Width, bitmap.Height));
Serialization\VisualSerializer.cs (1)
2009Rect rect = new Rect(0, 0, bitmap.Width, bitmap.Height);