From: dongsug.song Date: Tue, 17 Oct 2017 12:26:37 +0000 (+0900) Subject: [NUI] change Outline as PropertyMap type X-Git-Tag: preview1-00311~2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9cd5232468dd0a7d95c9ea49b529ecf040d714a7;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] change Outline as PropertyMap type Change-Id: I22c2f7af0338c4b3443f5c58fbe78ad23c3c256e Signed-off-by: dongsug.song --- diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs b/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs index 66b5eda..5762cb8 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs @@ -1151,12 +1151,12 @@ namespace Tizen.NUI.BaseComponents /// The Outline property. /// /// 3 - public string Outline + public PropertyMap Outline { get { - string temp; - GetProperty(TextEditor.Property.OUTLINE).Get(out temp); + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.OUTLINE).Get(temp); return temp; } set diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextField.cs b/src/Tizen.NUI/src/public/BaseComponents/TextField.cs index 0f31a23..2a9096a 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextField.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextField.cs @@ -53,7 +53,7 @@ namespace Tizen.NUI.BaseComponents return; } - if(type == DisposeTypes.Explicit) + if (type == DisposeTypes.Explicit) { //Called by User //Release your own managed resources here. @@ -320,7 +320,7 @@ namespace Tizen.NUI.BaseComponents [Obsolete("Please do not use! this will be deprecated")] public new static TextField DownCast(BaseHandle handle) { - TextField ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as TextField; + TextField ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as TextField; if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -1302,12 +1302,12 @@ namespace Tizen.NUI.BaseComponents /// The Outline property. /// /// 3 - public string Outline + public PropertyMap Outline { get { - string temp; - GetProperty(TextField.Property.OUTLINE).Get(out temp); + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.OUTLINE).Get(temp); return temp; } set diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs b/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs index e87c082..a166155 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextLabel.cs @@ -692,12 +692,12 @@ namespace Tizen.NUI.BaseComponents /// The default outline parameters.
/// /// 3 - public string Outline + public PropertyMap Outline { get { - string temp; - GetProperty(TextLabel.Property.OUTLINE).Get(out temp); + PropertyMap temp = new PropertyMap(); + GetProperty(TextLabel.Property.OUTLINE).Get(temp); return temp; } set