Skip to content

Commit

Permalink
[TCSACR-599][InputMethod] Deprecate RotationChanged event (#6315)
Browse files Browse the repository at this point in the history
  • Loading branch information
Inhong authored Sep 12, 2024
1 parent 08964b0 commit 4656a32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1462,6 +1462,7 @@ public static event EventHandler<DisplayLanguageChangedEventArgs> DisplayLanguag
/// Called when the device is rotated.
/// </summary>
/// <since_tizen> 4 </since_tizen>
[Obsolete("Deprecated since API12. Will be removed in API14. Please use Window.Resized instead.")]
public static event EventHandler<RotationChangedEventArgs> RotationChanged
{
add
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@
* limitations under the License.
*/

using System;

namespace Tizen.Uix.InputMethod
{
/// <summary>
/// This class contains the data related to the RotationChanged event.
/// </summary>
/// <since_tizen> 4 </since_tizen>
[Obsolete("Deprecated since API12. Will be removed in API14.")]
public class RotationChangedEventArgs
{
internal RotationChangedEventArgs(int degree)
Expand All @@ -31,6 +34,7 @@ internal RotationChangedEventArgs(int degree)
/// The rotation degree.
/// </summary>
/// <since_tizen> 4 </since_tizen>
[Obsolete("Deprecated since API12. Will be removed in API14.")]
public int Degree
{
get;
Expand Down

0 comments on commit 4656a32

Please sign in to comment.