From: Seoyeon Kim Date: Wed, 30 Mar 2022 05:52:35 +0000 (+0900) Subject: [NUI][TCSACR-485] Add some methods for Loading X-Git-Tag: accepted/tizen/unified/20231205.024657~1049 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1e788f1a67b043fd4ff4a63cf454af03bf2d6b15;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI][TCSACR-485] Add some methods for Loading - Make Play / Pause / Stop methods to public API on API level 10. - These methods are for Loading animation behavior. Signed-off-by: Seoyeon Kim --- diff --git a/src/Tizen.NUI.Components/Controls/Loading.cs b/src/Tizen.NUI.Components/Controls/Loading.cs index 9cd8cb4..4e61107 100755 --- a/src/Tizen.NUI.Components/Controls/Loading.cs +++ b/src/Tizen.NUI.Components/Controls/Loading.cs @@ -1,5 +1,5 @@ /* - * Copyright(c) 2021 Samsung Electronics Co., Ltd. + * Copyright(c) 2022 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -304,8 +304,7 @@ namespace Tizen.NUI.Components /// /// Play Loading Animation. /// - /// This may be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] + /// 10 public void Play() { PropertyValue attributes = new PropertyValue(0); @@ -316,8 +315,7 @@ namespace Tizen.NUI.Components /// /// Pause Loading Animation. /// - /// This may be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] + /// 10 public void Pause() { PropertyValue attributes = new PropertyValue(0); @@ -328,8 +326,7 @@ namespace Tizen.NUI.Components /// /// Stop Loading Animation. /// - /// This may be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] + /// 10 public void Stop() { PropertyValue attributes = new PropertyValue(0);