Base:
property
Height
System.Windows.Media.ImageSource.Height
9 references to Height
PresentationFramework (2)
System\Windows\Documents\WpfPayload.cs (1)
262$"<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)
2056imageNaturalSize = new Size(bitmapSource.Width, bitmapSource.Height);
PresentationFramework-SystemDrawing (1)
SystemDrawingExtension.cs (1)
123int imageHeight = (int)contentImage.Height;
ReachFramework (6)
AlphaFlattener\DrawingContext.cs (2)
850imageTransform.Scale(dest.Width / image.Image.Width, dest.Height / image.Image.Height); 874double scaleY = dest.Height / image.Image.Height;
AlphaFlattener\Primitive.cs (1)
507DstRect = new Rect(0, 0, bitmap.Width, bitmap.Height),
AlphaFlattener\PrimitiveRenderer.cs (1)
466double imageHeight = ip.Image.Image.Height;
Serialization\DrawingContextFlattener.cs (1)
434_dc.DrawImage(bitmap, new Rect(0, 0, bitmap.Width, bitmap.Height));
Serialization\VisualSerializer.cs (1)
2008Rect rect = new Rect(0, 0, bitmap.Width, bitmap.Height);