Fix some bugs:
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / TextField.cs
index f6f0496..66ecf00 100755 (executable)
@@ -1121,12 +1121,12 @@ namespace Tizen.NUI
         /// <summary>
         /// InputUnderline property.
         /// </summary>
-        public PropertyMap InputUnderline
+        public string InputUnderline
         {
             get
             {
-                PropertyMap temp = new PropertyMap();
-                GetProperty(TextField.Property.INPUT_UNDERLINE).Get(temp);
+                string temp;
+                GetProperty(TextField.Property.INPUT_UNDERLINE).Get(out temp);
                 return temp;
             }
             set
@@ -1155,12 +1155,12 @@ namespace Tizen.NUI
         /// <summary>
         /// InputShadow property.
         /// </summary>
-        public PropertyMap InputShadow
+        public string InputShadow
         {
             get
             {
-                PropertyMap temp = new PropertyMap();
-                GetProperty(TextField.Property.INPUT_SHADOW).Get(temp);
+                string temp;
+                GetProperty(TextField.Property.INPUT_SHADOW).Get(out temp);
                 return temp;
             }
             set
@@ -1172,12 +1172,12 @@ namespace Tizen.NUI
         /// <summary>
         /// Emboss property.
         /// </summary>
-        public PropertyMap Emboss
+        public string Emboss
         {
             get
             {
-                PropertyMap temp = new PropertyMap();
-                GetProperty(TextField.Property.EMBOSS).Get(temp);
+                string temp;
+                GetProperty(TextField.Property.EMBOSS).Get(out temp);
                 return temp;
             }
             set
@@ -1189,12 +1189,12 @@ namespace Tizen.NUI
         /// <summary>
         /// InputEmboss property.
         /// </summary>
-        public PropertyMap InputEmboss
+        public string InputEmboss
         {
             get
             {
-                PropertyMap temp = new PropertyMap();
-                GetProperty(TextField.Property.INPUT_EMBOSS).Get(temp);
+                string temp;
+                GetProperty(TextField.Property.INPUT_EMBOSS).Get(out temp);
                 return temp;
             }
             set
@@ -1206,12 +1206,12 @@ namespace Tizen.NUI
         /// <summary>
         /// Outline property.
         /// </summary>
-        public PropertyMap Outline
+        public string Outline
         {
             get
             {
-                PropertyMap temp = new PropertyMap();
-                GetProperty(TextField.Property.OUTLINE).Get(temp);
+                string temp;
+                GetProperty(TextField.Property.OUTLINE).Get(out temp);
                 return temp;
             }
             set
@@ -1223,12 +1223,12 @@ namespace Tizen.NUI
         /// <summary>
         /// InputOutline property.
         /// </summary>
-        public PropertyMap InputOutline
+        public string InputOutline
         {
             get
             {
-                PropertyMap temp = new PropertyMap();
-                GetProperty(TextField.Property.INPUT_OUTLINE).Get(temp);
+                string temp;
+                GetProperty(TextField.Property.INPUT_OUTLINE).Get(out temp);
                 return temp;
             }
             set