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
Properties
Height
The height of the window.
[Config("height", null, null)]
public int Height { get; set; }
Property Value
Width
The width of the window.
[Config("width", null, null)]
public int Width { get; set; }
Property Value
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.