c7f34f0b81a0657c02bb9259d56f493c9dd10057
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia / Camera / Area.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 using System;
18
19 namespace Tizen.Multimedia
20 {
21     /// <summary>
22     /// The class containing area of the display.
23     /// </summary>
24     public class Area
25     {
26         /// <summary>
27         /// Constructor for area class.
28         /// </summary>
29         /// <param name="x">X coordinate</param>
30         /// <param name="y">Y coordinate</param>
31         /// <param name="width">Width of area</param>
32         /// <param name="height">Height of area</param>
33         public Area(int x, int y, int width, int height)
34         {
35             X = x;
36             Y = y;
37             Width = width;
38             Height = height;
39         }
40
41         /// <summary>
42         /// X coordinate of the area.
43         /// </summary>
44         public int X
45         {
46             get;
47         }
48
49         /// <summary>
50         /// Y coordinate of the area.
51         /// </summary>
52         public int Y
53         {
54             get;
55         }
56
57         /// <summary>
58         /// Width of area.
59         /// </summary>
60         public int Width
61         {
62             get;
63         }
64
65         /// <summary>
66         /// Height of area.
67         /// </summary>
68         public int Height
69         {
70             get;
71         }
72     }
73 }
74