0a2be88e99556a11bb9373af8f00bef0a45fa368
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / DisplayedMonthChangedEventArgs.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 ElmSharp
20 {
21     /// <summary>
22     /// It inherits System.EventArgs.
23     /// The DisplayedMonthChangedEvent in Calendar contain
24     /// DisplayedMonthChangedEventArgs as a parameter.
25     /// </summary>
26     /// <since_tizen> preview </since_tizen>
27     public class DisplayedMonthChangedEventArgs : EventArgs
28     {
29         /// <summary>
30         /// Gets the OldMonth property of the given DisplayedMonthChangedEventArgs.
31         /// </summary>
32         /// <since_tizen> preview </since_tizen>
33         public int OldMonth { get; private set; }
34
35         /// <summary>
36         /// Gets the NewMonth property of the given DisplayedMonthChangedEventArgs.
37         /// </summary>
38         /// <since_tizen> preview </since_tizen>
39         public int NewMonth { get; private set; }
40
41         /// <summary>
42         /// Creates and initializes a new instance of the DisplayedMonthChangedEventArgs class.
43         /// </summary>
44         /// <param name="oldMonth">
45         /// old month of date when DisplayedMonthChangedEvent triggered.
46         /// </param>
47         /// <param name="newMonth">
48         /// new month of date when DisplayedMonthChangedEvent triggered.
49         /// </param>
50         /// <since_tizen> preview </since_tizen>
51         public DisplayedMonthChangedEventArgs(int oldMonth, int newMonth)
52         {
53             this.OldMonth = oldMonth;
54             this.NewMonth = newMonth;
55         }
56     }
57 }