ILockedFramebuffer Interface
Definition
public interface ILockedFramebuffer
Properties
| Name | Description |
|---|---|
| Address | Address of the first pixel |
| AlphaFormat | Gets the alpha format. |
| Dpi | DPI of underling screen |
| Format | Pixel format |
| RowBytes | Number of bytes per row |
| Size | Gets the framebuffer size in device pixels. |
Address Property
Address of the first pixel
public IntPtr Address { get; set; }
AlphaFormat Property
Gets the alpha format.
public Avalonia.Platform.AlphaFormat AlphaFormat { get; set; }
Dpi Property
DPI of underling screen
public Avalonia.Vector Dpi { get; set; }
Format Property
Pixel format
public Avalonia.Platform.PixelFormat Format { get; set; }
RowBytes Property
Number of bytes per row
public int RowBytes { get; set; }
Size Property
Gets the framebuffer size in device pixels.
public Avalonia.PixelSize Size { get; set; }