[ElmSharp] Modify source file mode (#621)
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / ContextPopupItem.cs
index 6fcdcb7..91c62d6 100644 (file)
@@ -18,6 +18,11 @@ using System;
 
 namespace ElmSharp
 {
+    /// <summary>
+    /// It inherits <see cref="ItemObject"/>.
+    /// An instance to the ContextPopup item is added.
+    /// </summary>
+    /// <since_tizen> preview </since_tizen>
     public class ContextPopupItem : ItemObject
     {
         internal ContextPopupItem(string text, EvasObject icon) : base(IntPtr.Zero)
@@ -26,8 +31,22 @@ namespace ElmSharp
             Icon = icon;
         }
 
+        /// <summary>
+        /// Gets the Text property of the given ContextPopupItem.
+        /// </summary>
+        /// <since_tizen> preview </since_tizen>
         public string Text { get; internal set; }
+
+        /// <summary>
+        /// Gets the Icon (type is <see cref="EvasObject"/>) property of the given ContextPopupItem.
+        /// </summary>
+        /// <since_tizen> preview </since_tizen>
         public EvasObject Icon { get; internal set; }
+
+        /// <summary>
+        /// Selected will be triggered when the ContextPopupItem is selected.
+        /// </summary>
+        /// <since_tizen> preview </since_tizen>
         public event EventHandler Selected;
 
         internal void SendSelected()