Table of Contents

Class WindowSize

Namespace
RadioExt_Helper.config
Assembly
RadioExt-Helper.dll
Represents the window size of the application.
public class WindowSize
Inheritance
WindowSize
Inherited Members

Constructors

WindowSize()

Create a new window size with the default values.
public WindowSize()

WindowSize(int, int)

Represents the window size of the application.
public WindowSize(int width, int height)

Parameters

width int
The width of the window.
height int
The height of the window.

Properties

Height

The height of the window.
[Config("height", null, null)]
public int Height { get; set; }

Property Value

int

Width

The width of the window.
[Config("width", null, null)]
public int Width { get; set; }

Property Value

int

Methods

IsEmpty()

Get a value indicating whether the window size is empty.
public bool IsEmpty()

Returns

bool
true if both the width and height are equal to 0; false, otherwise.