SixelExtent
Namespace: Hex1b.Sixel
Assembly: Hex1b.dll
A width/height pixel extent.
csharp
public readonly record struct SixelExtent : IEquatable<SixelExtent>Implements
Constructors
SixelExtent(int, int)
A width/height pixel extent.
Parameters:
csharp
public SixelExtent(int Width, int Height)Properties
Empty
An empty (zero-size) extent.
Returns: SixelExtent
csharp
public static SixelExtent Empty { get; }Height
The height, in pixels.
Returns: Int32
csharp
public int Height { get; init; }Width
The width, in pixels.
Returns: Int32
csharp
public int Width { get; init; }