[NUI] Remove [Obsolete()] attribute
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / Size.cs
index f65e33c..081287a 100755 (executable)
@@ -94,8 +94,18 @@ namespace Tizen.NUI
         /// <summary>
         /// The Width property for the width component of size
         /// </summary>
+        /// <remarks>
+        /// The setter is deprecated in API8 and will be removed in API10. Please use new Size(...) constructor.
+        /// </remarks>
+        /// <code>
+        /// // DO NOT use like the followings!
+        /// Size size = new Size();
+        /// size.Width = 0.1f; 
+        /// // Please USE like this
+        /// float width = 0.1f, height = 0.5f, depth = 0.9f;
+        /// Size size = new Size(width, height, depth);
+        /// </code>
         /// <since_tizen> 5 </since_tizen>
-        [Obsolete("Please do not use this setter, Deprecated in API8, will be removed in API10. please use new Size(...) constructor")]
         public float Width
         {
             set
@@ -118,8 +128,18 @@ namespace Tizen.NUI
         /// <summary>
         /// The Height property for the height component of size.
         /// </summary>
+        /// <remarks>
+        /// The setter is deprecated in API8 and will be removed in API10. Please use new Size(...) constructor.
+        /// </remarks>
+        /// <code>
+        /// // DO NOT use like the followings!
+        /// Size size = new Size();
+        /// size.Height = 0.5f; 
+        /// // Please USE like this
+        /// float width = 0.1f, height = 0.5f, depth = 0.9f;
+        /// Size size = new Size(width, height, depth);
+        /// </code>
         /// <since_tizen> 5 </since_tizen>
-        [Obsolete("Please do not use this setter, Deprecated in API8, will be removed in API10. please use new Size(...) constructor")]
         public float Height
         {
             set
@@ -142,8 +162,18 @@ namespace Tizen.NUI
         /// <summary>
         /// The Depth property for the depth component of size.
         /// </summary>
+        /// <remarks>
+        /// The setter is deprecated in API8 and will be removed in API10. Please use new Size(...) constructor.
+        /// </remarks>
+        /// <code>
+        /// // DO NOT use like the followings!
+        /// Size size = new Size();
+        /// size.Depth = 0.9f; 
+        /// // Please USE like this
+        /// float width = 0.1f, height = 0.5f, depth = 0.9f;
+        /// Size size = new Size(width, height, depth);
+        /// </code>
         /// <since_tizen> 5 </since_tizen>
-        [Obsolete("Please do not use this setter, Deprecated in API8, will be removed in API10. please use new Size(...) constructor")]
         public float Depth
         {
             set