Added summary tag and removed comment of API Level 9
authorShrouq Sabah <s.sabah@samsung.com>
Thu, 15 Jul 2021 09:27:09 +0000 (12:27 +0300)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Tue, 3 Aug 2021 01:50:50 +0000 (10:50 +0900)
src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs
src/Tizen.NUI/src/public/BaseComponents/TextField.cs
src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs
src/Tizen.NUI/src/public/Common/NUIConstants.cs

index ead9fc3..2d6e115 100755 (executable)
@@ -1338,7 +1338,10 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-        /// This will be released at Tizen.NET API Level 9, so currently this would be used as inhouse API.
+        /// <summary>
+        /// The Ellipsis property.<br />
+        /// Enable or disable the ellipsis.<br />
+        /// </summary>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool Ellipsis
         {
@@ -1353,7 +1356,12 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-        /// This will be released at Tizen.NET API Level 9, so currently this would be used as inhouse API.
+
+        /// <summary>
+        /// The ellipsis position of the text.
+        /// The ellipsis position type when the text size over the layout size.<br />
+        /// The ellipsis position: End, Start or Middle.<br />
+        /// </summary>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public EllipsisPosition EllipsisPosition
         {
index ebfecb0..499e43e 100755 (executable)
@@ -1348,7 +1348,11 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-        /// This will be released at Tizen.NET API Level 9, so currently this would be used as inhouse API.
+        /// <summary>
+        /// The ellipsis position of the text.
+        /// The ellipsis position type when the text size over the layout size.<br />
+        /// The ellipsis position: End, Start or Middle.<br />
+        /// </summary>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public EllipsisPosition EllipsisPosition
         {
index 6537359..8afac3a 100755 (executable)
@@ -781,7 +781,11 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-        /// This will be released at Tizen.NET API Level 9, so currently this would be used as inhouse API.
+        /// <summary>
+        /// The ellipsis position of the text.
+        /// The ellipsis position type when the text size over the layout size.<br />
+        /// The ellipsis position: End, Start or Middle.<br />
+        /// </summary>
         [EditorBrowsable(EditorBrowsableState.Never)]
         public EllipsisPosition EllipsisPosition
         {
index a20e36c..f0260f7 100755 (executable)
@@ -883,11 +883,28 @@ namespace Tizen.NUI
         Bottom
     }
 
+    /// <summary>
+    /// An enum of ellipsis position.
+    /// </summary>
     [EditorBrowsable(EditorBrowsableState.Never)]
     public enum EllipsisPosition
     {
+        /// <summary>
+        /// ellipsis position at end.
+        /// </summary>
+        [EditorBrowsable(EditorBrowsableState.Never)]
         End,
+
+        /// <summary>
+        /// ellipsis position at start.
+        /// </summary>
+        [EditorBrowsable(EditorBrowsableState.Never)]
         Start,
+
+        /// <summary>
+        /// ellipsis position in middle.
+        /// </summary>
+        [EditorBrowsable(EditorBrowsableState.Never)]
         Middle
     }