Skip to content

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:

  • Width (Int32): The width, in pixels.
  • Height (Int32): The height, in pixels.
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; }

Released under the MIT License.