[NUI] Add SetProperty for VerticalLineAlignment (#48)
authorhuiyueun <35286162+huiyueun@users.noreply.github.com>
Thu, 18 Jan 2018 06:28:36 +0000 (15:28 +0900)
committerGitHub <noreply@github.com>
Thu, 18 Jan 2018 06:28:36 +0000 (15:28 +0900)
Signed-off-by: huiyu,eun <huiyu.eun@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs

index e832b2f..f8e39ea 100755 (executable)
@@ -849,6 +849,10 @@ namespace Tizen.NUI.BaseComponents
                 GetProperty(TextLabel.Property.VERTICAL_LINE_ALIGNMENT).Get(out temp);
                 return (VerticalLineAlignment)temp;
             }
+            set
+            {
+                SetProperty(TextLabel.Property.VERTICAL_LINE_ALIGNMENT, new Tizen.NUI.PropertyValue((int)value));
+            }
         }
 
     }