[NUI] Add Hyphenation, Mixed to LineWrapMode
authorBowon Ryu <bowon.ryu@samsung.com>
Tue, 11 May 2021 02:47:41 +0000 (11:47 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Fri, 21 May 2021 07:37:43 +0000 (16:37 +0900)
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
src/Tizen.NUI/src/public/Common/NUIConstants.cs

index 0d87747..9eed615 100755 (executable)
@@ -807,7 +807,20 @@ namespace Tizen.NUI
         /// character will move character by character to the next line.
         /// </summary>
         /// <since_tizen> 4 </since_tizen>
-        Character
+        Character,
+
+        /// <summary>
+        /// Hyphenation mode will move part of the word (at possible hyphen locations)
+        /// to the next line and draw a hyphen at the end of the line.
+        /// </summary>
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        Hyphenation,
+
+        /// <summary>
+        /// Mixed mode will try word wrap, if failed, it will try hyphenation wrap.
+        /// </summary>
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        Mixed
     }
 
     /// <summary>