[ACR-564] deprecate unused API
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / NamedHint.cs
index 64a8d16..3820236 100644 (file)
  * limitations under the License.
  */
 
+using System;
+
 namespace ElmSharp
 {
     /// <summary>
     /// Predefined values for the hint properties in EvasObject.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
+    [Obsolete("This has been deprecated in API12")]
     public static class NamedHint
     {
         /// <summary>
         /// This value can be used for <see cref="EvasObject.WeightX"/> and <see cref="EvasObject.WeightY"/>.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
+        [Obsolete("This has been deprecated in API12")]
         public static readonly double Expand = 1.0;
 
         /// <summary>
         /// This value can be used for <see cref="EvasObject.AlignmentX"/> and <see cref="EvasObject.AlignmentY"/>.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
+        [Obsolete("This has been deprecated in API12")]
         public static readonly double Fill = -1.0;
     }
 }