[ElmSharp] Mark ElmSharp API as API Level: preview
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / Icon.cs
index 3ebff8f..5f2dac4 100755 (executable)
@@ -21,6 +21,7 @@ namespace ElmSharp
     /// <summary>
     /// Enumeration for the icon lookup order. Should look for icons in the theme, FDO paths, or both.
     /// </summary>
+    /// <since_tizen> preview </since_tizen>
     public enum IconLookupOrder
     {
         /// <summary>
@@ -46,12 +47,14 @@ namespace ElmSharp
     /// or images coming from a custom file (PNG, JPG, EDJE, etc.), on icon context.
     /// Inherits Image
     /// </summary>
+    /// <since_tizen> preview </since_tizen>
     public class Icon : Image
     {
         /// <summary>
         /// Creates and initializes a new instance of Icon class.
         /// </summary>
         /// <param name="parent">The parent is a given container which will be attached by Icon as a child. It's <see cref="EvasObject"/> type.</param>
+        /// <since_tizen> preview </since_tizen>
         public Icon(EvasObject parent) : base(parent)
         {
         }
@@ -59,6 +62,7 @@ namespace ElmSharp
         /// <summary>
         /// Sets or gets the standard icon name of a given Icon widget.
         /// </summary>
+        /// <since_tizen> preview </since_tizen>
         public string StandardIconName
         {
             get
@@ -74,6 +78,7 @@ namespace ElmSharp
         /// <summary>
         /// Sets or gets the icon lookup order of a given Icon widget.
         /// </summary>
+        /// <since_tizen> preview </since_tizen>
         public IconLookupOrder IconLookupOrder
         {
             get
@@ -91,6 +96,7 @@ namespace ElmSharp
         /// </summary>
         /// <param name="file">The path to the file that is used as an icon image</param>
         /// <param name="group">The group that the icon belongs to</param>
+        /// <since_tizen> preview </since_tizen>
         public void SetThumb(string file, string group)
         {
             Interop.Elementary.elm_icon_thumb_set(RealHandle, file, group);
@@ -101,6 +107,7 @@ namespace ElmSharp
         /// </summary>
         /// <param name="parent">EvasObject</param>
         /// <returns>The new object, otherwise NULL if it cannot be created</returns>
+        /// <since_tizen> preview </since_tizen>
         protected override IntPtr CreateHandle(EvasObject parent)
         {
             IntPtr handle = Interop.Elementary.elm_layout_add(parent.Handle);