2 implementations of Height
Microsoft.Maui.Graphics (2)
AbstractPattern.cs (1)
6 public float Height { get; }
PaintPattern.cs (1)
9 public float Height => Wrapped?.Height ?? 0;
5 references to Height
Microsoft.Maui.Graphics (1)
PaintPattern.cs (1)
9 public float Height => Wrapped?.Height ?? 0;
Microsoft.Maui.Graphics.Skia (2)
SKGraphicsExtensions.cs (2)
363 using (var context = new SkiaBitmapExportContext((int)(pattern.Width * scale), (int)(pattern.Height * scale), scale, disposeBitmap: false)) 380 using (var context = new SkiaBitmapExportContext((int)(pattern.Width * scaleX), (int)(pattern.Height * scaleY), 1, disposeBitmap: false))
Microsoft.Maui.Graphics.Win2D.WinUI.Desktop (2)
src\Graphics\src\Graphics\Platforms\Windows\PlatformCanvas.cs (2)
453 (pattern.Height - pattern.StepY) / 2, 511 var context = GetOrCreatePatternContext(new global::Windows.Foundation.Size(pattern.Width, pattern.Height));