Skip to main content
Version: 1.0.0-preview.36

Velaptor.SizeU

Velaptor

Velaptor

SizeU Struct

Stores an ordered pair of unsigned integers, which specify a Width and Height.

public readonly struct SizeU :
System.IEquatable<Velaptor.SizeU>

Implements System.IEquatable<SizeU>

Constructors

SizeU(uint, uint) Constructor

Initializes a new instance of the SizeU struct.

public SizeU(uint width, uint height);

Parameters

width System.UInt32

The width of the size.

height System.UInt32

The height of the size.

Properties

Height

Gets the height of the size.

public uint Height { get; set; }

Property Value

System.UInt32

Width

Gets the width of the size.

public uint Width { get; set; }

Property Value

System.UInt32