summaryrefslogtreecommitdiff
path: root/ElmSharp/ElmSharp
diff options
context:
space:
mode:
authorwenxuan.gu <wenxuan.gu@samsung.com>2017-04-13 11:50:19 +0800
committerwenxuan.gu <wenxuan.gu@samsung.com>2017-04-13 11:50:19 +0800
commitb5342f1a483061fec08109cccecfd61de529b781 (patch)
treeaf63812aeac9c1fc606aa964d7cede7fcf5e029c /ElmSharp/ElmSharp
parent36556537e6aeba3b0eca28dd6ffb791fa02cd6d8 (diff)
downloadelm-sharp-b5342f1a483061fec08109cccecfd61de529b781.tar.gz
elm-sharp-b5342f1a483061fec08109cccecfd61de529b781.tar.bz2
elm-sharp-b5342f1a483061fec08109cccecfd61de529b781.zip
Add comment for WrapType
Change-Id: I1d640fff638d103ac5b078d281d3ecc22b87557e
Diffstat (limited to 'ElmSharp/ElmSharp')
-rwxr-xr-x[-rw-r--r--]ElmSharp/ElmSharp/WrapType.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/ElmSharp/ElmSharp/WrapType.cs b/ElmSharp/ElmSharp/WrapType.cs
index f665198..5725790 100644..100755
--- a/ElmSharp/ElmSharp/WrapType.cs
+++ b/ElmSharp/ElmSharp/WrapType.cs
@@ -18,11 +18,27 @@ using System;
namespace ElmSharp
{
+ /// <summary>
+ /// Enumeration for the wrap type.
+ /// </summary>
public enum WrapType
{
+ /// <summary>
+ /// No wrap.
+ /// </summary>
None = 0,
+ /// <summary>
+ /// Char wrap - wrap between characters.
+ /// </summary>
Char,
+ /// <summary>
+ /// Word wrap - wrap within the allowed wrapping points
+ /// (as defined in the unicode standard).
+ /// </summary>
Word,
+ /// <summary>
+ /// Mixed wrap - Word wrap, if that fails, char wrap.
+ /// </summary>
Mixed
}
}