blob: 4a4e09d34348479444fb39bb544682b2d056add4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Size.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// Defines the Size type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Model
{
/// <summary>
/// The size.
/// </summary>
public class Size
{
/// <summary>
/// Initializes a new instance of the <see cref="Size"/> class.
/// </summary>
/// <param name="width">
/// The width.
/// </param>
/// <param name="height">
/// The height.
/// </param>
public Size(int width, int height)
{
this.Width = width;
this.Height = height;
}
/// <summary>
/// Gets the height.
/// </summary>
public int Height { get; private set; }
/// <summary>
/// Gets the width.
/// </summary>
public int Width { get; private set; }
/// <summary>
/// Gets a value indicating whether is empty.
/// </summary>
public bool IsEmpty
{
get
{
if (this.Width <= 0 && this.Height <= 0)
{
return true;
}
else
{
return false;
}
}
}
}
}
|